|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <properties> |
8 | | - <maven.compiler.target>11</maven.compiler.target> |
9 | | - <maven.compiler.source>11</maven.compiler.source> |
| 8 | + <maven.compiler.target>19</maven.compiler.target> |
| 9 | + <maven.compiler.source>19</maven.compiler.source> |
10 | 10 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
11 | 11 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
12 | 12 | </properties> |
13 | 13 |
|
14 | | - <groupId>me.reply.qubo</groupId> |
| 14 | + <groupId>me.replydev</groupId> |
15 | 15 | <artifactId>quboscanner</artifactId> |
16 | | - <version>0.4</version> |
| 16 | + <version>1.0.0</version> |
| 17 | + |
| 18 | + <repositories> |
| 19 | + <repository> |
| 20 | + <id>jitpack.io</id> |
| 21 | + <url>https://jitpack.io</url> |
| 22 | + </repository> |
| 23 | + </repositories> |
| 24 | + |
| 25 | + <dependencyManagement> |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>org.junit</groupId> |
| 29 | + <artifactId>junit-bom</artifactId> |
| 30 | + <version>5.9.2</version> |
| 31 | + <type>pom</type> |
| 32 | + <scope>import</scope> |
| 33 | + </dependency> |
| 34 | + </dependencies> |
| 35 | + </dependencyManagement> |
17 | 36 |
|
18 | 37 | <dependencies> |
19 | 38 | <dependency> |
20 | | - <groupId>com.google.code.gson</groupId> |
21 | | - <artifactId>gson</artifactId> |
22 | | - <version>2.8.9</version> |
| 39 | + <groupId>commons-cli</groupId> |
| 40 | + <artifactId>commons-cli</artifactId> |
| 41 | + <version>1.5.0</version> |
23 | 42 | </dependency> |
24 | 43 | <dependency> |
25 | | - <groupId>org.apache.commons</groupId> |
26 | | - <artifactId>commons-lang3</artifactId> |
27 | | - <version>3.12.0</version> |
| 44 | + <groupId>org.projectlombok</groupId> |
| 45 | + <artifactId>lombok</artifactId> |
| 46 | + <version>1.18.24</version> |
| 47 | + <scope>provided</scope> |
28 | 48 | </dependency> |
29 | 49 | <dependency> |
30 | | - <groupId>net.java.dev.jna</groupId> |
31 | | - <artifactId>jna-platform</artifactId> |
32 | | - <version>5.6.0</version> |
| 50 | + <groupId>com.github.seancfoley</groupId> |
| 51 | + <artifactId>ipaddress</artifactId> |
| 52 | + <version>5.3.4</version> |
33 | 53 | </dependency> |
34 | 54 | <dependency> |
35 | | - <groupId>com.formdev</groupId> |
36 | | - <artifactId>flatlaf</artifactId> |
37 | | - <version>0.45</version> |
| 55 | + <groupId>org.tinylog</groupId> |
| 56 | + <artifactId>slf4j-tinylog</artifactId> |
| 57 | + <version>2.6.0</version> |
38 | 58 | </dependency> |
39 | 59 | <dependency> |
40 | | - <groupId>com.intellij</groupId> |
41 | | - <artifactId>forms_rt</artifactId> |
42 | | - <version>7.0.3</version> |
| 60 | + <groupId>org.tinylog</groupId> |
| 61 | + <artifactId>tinylog-impl</artifactId> |
| 62 | + <version>2.6.0</version> |
43 | 63 | </dependency> |
44 | 64 | <dependency> |
45 | | - <groupId>commons-cli</groupId> |
46 | | - <artifactId>commons-cli</artifactId> |
47 | | - <version>1.4</version> |
48 | | - </dependency> |
49 | | - <dependency> |
50 | | - <groupId>com.github.seancfoley</groupId> |
51 | | - <artifactId>ipaddress</artifactId> |
52 | | - <version>5.3.3</version> |
53 | | - </dependency> |
54 | | - <dependency> |
55 | | - <groupId>org.apache.logging.log4j</groupId> |
56 | | - <artifactId>log4j-core</artifactId> |
57 | | - <version>2.17.1</version> |
| 65 | + <groupId>com.github.replydev</groupId> |
| 66 | + <artifactId>mcping</artifactId> |
| 67 | + <version>v1.0.2</version> |
58 | 68 | </dependency> |
| 69 | + |
59 | 70 | <dependency> |
60 | | - <groupId>org.apache.httpcomponents</groupId> |
61 | | - <artifactId>httpclient</artifactId> |
62 | | - <version>4.5.13</version> |
| 71 | + <groupId>org.junit.jupiter</groupId> |
| 72 | + <artifactId>junit-jupiter</artifactId> |
| 73 | + <scope>test</scope> |
63 | 74 | </dependency> |
64 | 75 | </dependencies> |
65 | 76 | <build> |
66 | 77 | <plugins> |
67 | 78 | <plugin> |
68 | | - <groupId>org.apache.maven.plugins</groupId> |
69 | | - <artifactId>maven-dependency-plugin</artifactId> |
70 | | - <version>3.0.1</version> |
71 | | - <executions> |
72 | | - <execution> |
73 | | - <id>copy-dependencies</id> |
74 | | - <phase>package</phase> |
75 | | - <goals><goal>copy-dependencies</goal></goals> |
76 | | - </execution> |
77 | | - </executions> |
| 79 | + <artifactId>maven-surefire-plugin</artifactId> |
| 80 | + <version>3.0.0-M7</version> |
78 | 81 | </plugin> |
79 | 82 | <plugin> |
80 | 83 | <artifactId>maven-assembly-plugin</artifactId> |
|
92 | 95 | <plugin> |
93 | 96 | <groupId>org.apache.maven.plugins</groupId> |
94 | 97 | <artifactId>maven-compiler-plugin</artifactId> |
| 98 | + <version>3.10.1</version> |
| 99 | + <configuration> |
| 100 | + <release>19</release> |
| 101 | + <compilerArgs>--enable-preview</compilerArgs> |
| 102 | + <source>19</source> |
| 103 | + <target>19</target> |
| 104 | + </configuration> |
95 | 105 | </plugin> |
96 | 106 | </plugins> |
97 | 107 | </build> |
|
0 commit comments