|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | | - <modelVersion>4.0.0</modelVersion> |
3 | | - <groupId>com.javadeobfuscator</groupId> |
4 | | - <artifactId>deobfuscator-gui</artifactId> |
5 | | - <url>https://github.com/java-deobfuscator/</url> |
6 | | - <version>4.0</version> |
7 | | - <name>deobfuscator-gui</name> |
8 | | - <description>UI front-end for deobfuscator</description> |
9 | | - <dependencies> |
10 | | - <!-- Functionality --> |
11 | | - <!-- EMPTY --> |
12 | | - |
13 | | - <!--- User interface --> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>com.javadeobfuscator</groupId> |
| 6 | + <artifactId>deobfuscator-gui</artifactId> |
| 7 | + <version>4.0</version> |
| 8 | + |
| 9 | + <name>deobfuscator-gui</name> |
| 10 | + <description>UI front-end for deobfuscator</description> |
| 11 | + <url>https://github.com/java-deobfuscator/</url> |
| 12 | + |
| 13 | + <dependencies> |
| 14 | + <!--- User interface --> |
14 | 15 | <dependency> |
15 | 16 | <groupId>com.github.weisj</groupId> |
16 | 17 | <artifactId>darklaf-core</artifactId> |
17 | | - <version>2.7.2</version> |
| 18 | + <version>3.0.2</version> |
18 | 19 | </dependency> |
19 | | - </dependencies> |
20 | | - <build> |
21 | | - <sourceDirectory>src/java</sourceDirectory> |
| 20 | + </dependencies> |
| 21 | + |
| 22 | + <build> |
| 23 | + <sourceDirectory>src/java</sourceDirectory> |
22 | 24 | <resources> |
23 | 25 | <resource> |
24 | 26 | <directory>src/resources</directory> |
25 | 27 | </resource> |
26 | 28 | </resources> |
27 | | - <plugins> |
28 | | - <plugin> |
| 29 | + <plugins> |
| 30 | + <plugin> |
29 | 31 | <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 | | - <plugin> |
| 32 | + <artifactId>maven-compiler-plugin</artifactId> |
| 33 | + <version>3.10.1</version> |
| 34 | + <configuration> |
| 35 | + <source>1.8</source> |
| 36 | + <target>1.8</target> |
| 37 | + </configuration> |
| 38 | + </plugin> |
| 39 | + <plugin> |
38 | 40 | <groupId>org.apache.maven.plugins</groupId> |
39 | | - <artifactId>maven-assembly-plugin</artifactId> |
| 41 | + <artifactId>maven-assembly-plugin</artifactId> |
40 | 42 | <version>3.3.0</version> |
41 | | - <executions> |
42 | | - <execution> |
43 | | - <phase>package</phase> |
44 | | - <goals> |
45 | | - <goal>single</goal> |
46 | | - </goals> |
47 | | - </execution> |
48 | | - </executions> |
49 | | - <configuration> |
50 | | - <archive> |
51 | | - <manifest> |
52 | | - <mainClass>com.javadeobfuscator.deobfuscator.ui.SwingWindow</mainClass> |
53 | | - </manifest> |
54 | | - </archive> |
55 | | - <descriptorRefs> |
56 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
57 | | - </descriptorRefs> |
58 | | - </configuration> |
59 | | - </plugin> |
60 | | - </plugins> |
61 | | - </build> |
| 43 | + <executions> |
| 44 | + <execution> |
| 45 | + <phase>package</phase> |
| 46 | + <goals> |
| 47 | + <goal>single</goal> |
| 48 | + </goals> |
| 49 | + </execution> |
| 50 | + </executions> |
| 51 | + <configuration> |
| 52 | + <archive> |
| 53 | + <manifest> |
| 54 | + <mainClass>com.javadeobfuscator.deobfuscator.ui.SwingWindow</mainClass> |
| 55 | + </manifest> |
| 56 | + </archive> |
| 57 | + <descriptorRefs> |
| 58 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 59 | + </descriptorRefs> |
| 60 | + </configuration> |
| 61 | + </plugin> |
| 62 | + </plugins> |
| 63 | + </build> |
62 | 64 | </project> |
0 commit comments