Skip to content

Commit

Permalink
Update of dependencies
Browse files Browse the repository at this point in the history
Change Java version to 17
  • Loading branch information
bartoszm committed Jan 10, 2024
1 parent aedf42b commit 8f42fab
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mvn clean package

# Project run (CLI)

Project requires Java runtime in version 11 or greater.
Project requires Java runtime in version 17 or greater.

```shell script
java -jar blender-all-in.jar <command> [args]
Expand Down
41 changes: 22 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@
<groupId>com.amartus.sonata</groupId>
<artifactId>blender</artifactId>
<description>SonataBlendingTool</description>
<version>1.11.2</version>
<version>1.11.3</version>
<properties>
<openapi.generator.version>6.2.0</openapi.generator.version>
<jackson.version>2.14.2</jackson.version>
<openapi.generator.version>7.2.0</openapi.generator.version>
<jackson.version>2.16.1</jackson.version>
<junit.version>5.10.1</junit.version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.openapitools/openapi-generator -->
Expand All @@ -43,6 +44,13 @@
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.16.0</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand All @@ -51,17 +59,12 @@
<dependency>
<groupId>com.github.rvesse</groupId>
<artifactId>airline</artifactId>
<version>2.9.0</version>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.5</version>
</dependency>
<dependency>
<groupId>io.swagger.parser.v3</groupId>
<artifactId>swagger-parser-v3</artifactId>
<version>2.1.12</version>
<version>1.4.12</version>
</dependency>
<dependency>
<groupId>com.networknt</groupId>
Expand All @@ -81,32 +84,32 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.9.0</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>net.javacrumbs.json-unit</groupId>
<artifactId>json-unit-assertj</artifactId>
<version>2.37.0</version>
<version>3.2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -122,22 +125,22 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<version>3.12.1</version>
<configuration>
<release>11</release>
<release>17</release>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
<version>1.18.30</version>
</path>
</annotationProcessorPaths>
</configuration>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
<version>1.18.30</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit 8f42fab

Please sign in to comment.