|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
3 |
| - 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"> |
| 3 | + 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"> |
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 | <groupId>org.nqm</groupId>
|
6 | 6 | <artifactId>gis</artifactId>
|
7 | 7 | <version>1.1.2</version>
|
8 | 8 | <packaging>${packaging}</packaging>
|
9 | 9 |
|
10 | 10 | <properties>
|
| 11 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 12 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
11 | 13 | <packaging>jar</packaging>
|
12 |
| - <maven.compiler.target>17</maven.compiler.target> |
13 |
| - <maven.compiler.source>17</maven.compiler.source> |
14 |
| - <picocli.version>4.7.1</picocli.version> |
| 14 | + <maven.compiler.target>21</maven.compiler.target> |
| 15 | + <maven.compiler.source>21</maven.compiler.source> |
| 16 | + <picocli.version>4.7.5</picocli.version> |
| 17 | + <vertx.version>4.4.7</vertx.version> |
| 18 | + <compiler.plugin.version>3.12.1</compiler.plugin.version> |
| 19 | + <jar.plugin.version>3.3.0</jar.plugin.version> |
15 | 20 | </properties>
|
16 | 21 |
|
17 | 22 | <dependencies>
|
|
23 | 28 | <dependency>
|
24 | 29 | <groupId>io.vertx</groupId>
|
25 | 30 | <artifactId>vertx-core</artifactId>
|
26 |
| - <version>4.4.1</version> |
| 31 | + <version>${vertx.version}</version> |
27 | 32 | </dependency>
|
28 | 33 | </dependencies>
|
29 | 34 |
|
|
33 | 38 | <plugin>
|
34 | 39 | <groupId>org.apache.maven.plugins</groupId>
|
35 | 40 | <artifactId>maven-compiler-plugin</artifactId>
|
36 |
| - <version>3.10.1</version> |
| 41 | + <version>${compiler.plugin.version}</version> |
37 | 42 | <configuration>
|
38 | 43 | <annotationProcessorPaths combine.children="append">
|
39 | 44 | <path>
|
|
50 | 55 | <plugin>
|
51 | 56 | <groupId>org.apache.maven.plugins</groupId>
|
52 | 57 | <artifactId>maven-jar-plugin</artifactId>
|
53 |
| - <version>3.2.2</version> |
| 58 | + <version>${jar.plugin.version}</version> |
54 | 59 | <configuration>
|
55 | 60 | <archive>
|
56 | 61 | <manifest>
|
|
0 commit comments