Skip to content

Commit a8f06c0

Browse files
committed
Update of dependencies
Change Java version to 17
1 parent aedf42b commit a8f06c0

File tree

2 files changed

+22
-19
lines changed

2 files changed

+22
-19
lines changed

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mvn clean package
1212

1313
# Project run (CLI)
1414

15-
Project requires Java runtime in version 11 or greater.
15+
Project requires Java runtime in version 17 or greater.
1616

1717
```shell script
1818
java -jar blender-all-in.jar <command> [args]

‎pom.xml

+21-18
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@
2525
<groupId>com.amartus.sonata</groupId>
2626
<artifactId>blender</artifactId>
2727
<description>SonataBlendingTool</description>
28-
<version>1.11.2</version>
28+
<version>1.11.3</version>
2929
<properties>
30-
<openapi.generator.version>6.2.0</openapi.generator.version>
31-
<jackson.version>2.14.2</jackson.version>
30+
<openapi.generator.version>7.2.0</openapi.generator.version>
31+
<jackson.version>2.16.1</jackson.version>
32+
<junit.version>5.10.1</junit.version>
3233
</properties>
3334
<dependencies>
3435
<!-- https://mvnrepository.com/artifact/org.openapitools/openapi-generator -->
@@ -43,6 +44,13 @@
4344
</exclusion>
4445
</exclusions>
4546
</dependency>
47+
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
48+
<dependency>
49+
<groupId>commons-codec</groupId>
50+
<artifactId>commons-codec</artifactId>
51+
<version>1.16.0</version>
52+
</dependency>
53+
4654
<dependency>
4755
<groupId>org.slf4j</groupId>
4856
<artifactId>slf4j-api</artifactId>
@@ -51,17 +59,12 @@
5159
<dependency>
5260
<groupId>com..rvesse</groupId>
5361
<artifactId>airline</artifactId>
54-
<version>2.9.0</version>
62+
<version>3.0.0</version>
5563
</dependency>
5664
<dependency>
5765
<groupId>ch.qos.logback</groupId>
5866
<artifactId>logback-classic</artifactId>
59-
<version>1.4.5</version>
60-
</dependency>
61-
<dependency>
62-
<groupId>io.swagger.parser.v3</groupId>
63-
<artifactId>swagger-parser-v3</artifactId>
64-
<version>2.1.12</version>
67+
<version>1.4.12</version>
6568
</dependency>
6669
<dependency>
6770
<groupId>com.networknt</groupId>
@@ -81,32 +84,32 @@
8184
<dependency>
8285
<groupId>org.projectlombok</groupId>
8386
<artifactId>lombok</artifactId>
84-
<version>1.18.26</version>
87+
<version>1.18.30</version>
8588
<scope>provided</scope>
8689
</dependency>
8790
<dependency>
8891
<groupId>org.junit.jupiter</groupId>
8992
<artifactId>junit-jupiter-api</artifactId>
90-
<version>5.9.0</version>
93+
<version>${junit.version}</version>
9194
<scope>test</scope>
9295
</dependency>
9396
<dependency>
9497
<groupId>org.junit.jupiter</groupId>
9598
<artifactId>junit-jupiter-engine</artifactId>
96-
<version>5.9.0</version>
99+
<version>${junit.version}</version>
97100
<scope>test</scope>
98101
</dependency>
99102
<dependency>
100103
<groupId>org.junit.jupiter</groupId>
101104
<artifactId>junit-jupiter-params</artifactId>
102-
<version>5.9.0</version>
105+
<version>${junit.version}</version>
103106
<scope>test</scope>
104107
</dependency>
105108

106109
<dependency>
107110
<groupId>net.javacrumbs.json-unit</groupId>
108111
<artifactId>json-unit-assertj</artifactId>
109-
<version>2.37.0</version>
112+
<version>3.2.2</version>
110113
<scope>test</scope>
111114
</dependency>
112115
</dependencies>
@@ -124,20 +127,20 @@
124127
<artifactId>maven-compiler-plugin</artifactId>
125128
<version>3.8.0</version>
126129
<configuration>
127-
<release>11</release>
130+
<release>17</release>
128131
<annotationProcessorPaths>
129132
<path>
130133
<groupId>org.projectlombok</groupId>
131134
<artifactId>lombok</artifactId>
132-
<version>1.18.26</version>
135+
<version>1.18.30</version>
133136
</path>
134137
</annotationProcessorPaths>
135138
</configuration>
136139
<dependencies>
137140
<dependency>
138141
<groupId>org.projectlombok</groupId>
139142
<artifactId>lombok</artifactId>
140-
<version>1.18.26</version>
143+
<version>1.18.30</version>
141144
</dependency>
142145
</dependencies>
143146
</plugin>

0 commit comments

Comments
 (0)