File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- <?xml version =" 1.0" encoding =" UTF-8" ?>
21<project xmlns =" http://maven.apache.org/POM/4.0.0"
32 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
43 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
54 <modelVersion >4.0.0</modelVersion >
65
7- <groupId >org .example</groupId >
8- <artifactId >DLLStringSercher </artifactId >
6+ <groupId >com .example</groupId >
7+ <artifactId >JarMethodFinder </artifactId >
98 <version >1.0-SNAPSHOT</version >
109
11- <properties >
12- <maven .compiler.source>8</maven .compiler.source>
13- <maven .compiler.target>8</maven .compiler.target>
14- </properties >
10+ <dependencies >
11+ <!-- Apache Commons IO -->
12+ <dependency >
13+ <groupId >commons-io</groupId >
14+ <artifactId >commons-io</artifactId >
15+ <version >2.11.0</version >
16+ </dependency >
1517
16- </project >
18+ <!-- Apache BCEL 直接引用 -->
19+ <dependency >
20+ <groupId >org.apache.bcel</groupId >
21+ <artifactId >bcel</artifactId >
22+ <version >6.6.0</version >
23+ </dependency >
24+ </dependencies >
25+
26+ <build >
27+ <plugins >
28+ <plugin >
29+ <groupId >org.apache.maven.plugins</groupId >
30+ <artifactId >maven-compiler-plugin</artifactId >
31+ <version >3.8.1</version >
32+ <configuration >
33+ <source >1.8</source >
34+ <target >1.8</target >
35+ </configuration >
36+ </plugin >
37+ </plugins >
38+ </build >
39+ </project >
You can’t perform that action at this time.
0 commit comments