Skip to content

Commit d9be4e4

Browse files
committed
Update dependencies
1 parent b35382e commit d9be4e4

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

pom.xml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.simplelocalize</groupId>
6-
<artifactId>simplelocalize-cli</artifactId>
7-
<version>2.5.1</version>
6+
<artifactId>cli</artifactId>
7+
<version>2.6.0</version>
88
<packaging>jar</packaging>
99
<name>simplelocalize-cli</name>
1010
<description>Official SimpleLocalize Command Line Interface</description>
1111

1212
<properties>
13-
<jdk.version>17</jdk.version>
13+
<jdk.version>21</jdk.version>
1414
<exec.mainClass>io.simplelocalize.cli.SimplelocalizeCliCommand</exec.mainClass>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1717

1818
<!-- versions -->
1919
<junit5.version>5.9.2</junit5.version>
20-
<picocli.version>4.7.4</picocli.version>
20+
<picocli.version>4.7.5</picocli.version>
2121
<jackson.version>2.14.2</jackson.version>
2222

2323
<!-- maven -->
@@ -30,6 +30,7 @@
3030
<native-maven-plugin.version>0.9.22</native-maven-plugin.version>
3131
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
3232
<maven-failsafe-plugin.version>2.22.2</maven-failsafe-plugin.version>
33+
<lombok.version>1.18.30</lombok.version>
3334
<graalvm.quickBuild>false</graalvm.quickBuild>
3435

3536
<!-- jacoco -->
@@ -87,6 +88,13 @@
8788
<version>${jackson.version}</version>
8889
</dependency>
8990

91+
<dependency>
92+
<groupId>org.projectlombok</groupId>
93+
<artifactId>lombok</artifactId>
94+
<version>${lombok.version}</version>
95+
<optional>true</optional>
96+
</dependency>
97+
9098
<!-- test -->
9199
<dependency>
92100
<groupId>org.junit.jupiter</groupId>
@@ -184,8 +192,6 @@
184192
</activation>
185193
<build>
186194
<plugins>
187-
188-
189195
<plugin>
190196
<groupId>org.apache.maven.plugins</groupId>
191197
<artifactId>maven-jar-plugin</artifactId>
@@ -213,6 +219,11 @@
213219
<artifactId>picocli-codegen</artifactId>
214220
<version>${picocli.version}</version>
215221
</path>
222+
<path>
223+
<groupId>org.projectlombok</groupId>
224+
<artifactId>lombok</artifactId>
225+
<version>${lombok.version}</version>
226+
</path>
216227
</annotationProcessorPaths>
217228
<compilerArgs>
218229
<arg>-Aproject=${project.groupId}/${project.artifactId}</arg>

0 commit comments

Comments
 (0)