Skip to content

Commit

Permalink
Update Java Dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jfaltermeier committed Aug 21, 2024
1 parent 80ffd29 commit 0a1975d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
8 changes: 6 additions & 2 deletions java/common/maven-conf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<properties>
<failsafe.useModulePath>false</failsafe.useModulePath>
<guice.version>5.0.1</guice.version>
<guice.version>7.0.0</guice.version>
<kubernetes-client.version>6.10.0</kubernetes-client.version>
<log4j.version>2.17.1</log4j.version>
<slf4j.version>1.7.32</slf4j.version>
Expand All @@ -25,6 +25,10 @@
<quarkus.platform.version>3.8.1</quarkus.platform.version>
<surefire-plugin.version>3.0.0-M7</surefire-plugin.version>
<webhooks.framework.core.version>1.1.2</webhooks.framework.core.version>
<google.artifactregistry-maven-wagon-version>2.2.0</google.artifactregistry-maven-wagon-version>
<junit-jupiter.version>5.10.3</junit-jupiter.version>
<org.json.version>20220924</org.json.version>
<picocli.version>4.6.3</picocli.version>
</properties>

<profiles>
Expand Down Expand Up @@ -73,7 +77,7 @@
<plugin>
<groupId>com.google.cloud.artifactregistry</groupId>
<artifactId>artifactregistry-maven-wagon</artifactId>
<version>2.2.0</version>
<version>${google.artifactregistry-maven-wagon-version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
Expand Down
3 changes: 1 addition & 2 deletions java/common/org.eclipse.theia.cloud.common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.3</version>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
<relativePath>../../common/maven-conf/</relativePath>
</parent>

<properties>
<picocli.version>4.6.3</picocli.version>
</properties>

<dependencies>
<dependency>
<groupId>org.eclipse.theia.cloud</groupId>
Expand All @@ -33,7 +29,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220924</version>
<version>${org.json.version}</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
Expand Down
6 changes: 1 addition & 5 deletions java/operator/org.eclipse.theia.cloud.operator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
<relativePath>../../common/maven-conf/</relativePath>
</parent>

<properties>
<picocli.version>4.6.3</picocli.version>
</properties>

<dependencies>
<dependency>
<groupId>org.eclipse.theia.cloud</groupId>
Expand All @@ -28,7 +24,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220924</version>
<version>${org.json.version}</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
Expand Down

0 comments on commit 0a1975d

Please sign in to comment.