Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependencies upgrade #307

Merged
merged 8 commits into from
Oct 2, 2024
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
The root cause is that we are using an older version of Spring. -->
<slf4j.version>1.7.36</slf4j.version>
<logback.version>1.2.13</logback.version>
<license-maven-plugin.version>4.3</license-maven-plugin.version>
<license-maven-plugin.version>4.6</license-maven-plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -136,7 +136,7 @@
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>2.2</version>
<version>3.0</version>
<scope>test</scope>
</dependency>

Expand All @@ -160,7 +160,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<version>0.8.12</version>
<executions>
<execution>
<goals>
Expand Down
10 changes: 5 additions & 5 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,19 @@
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client</artifactId>
<version>1.44.1</version>
<version>1.45.0</version>
</dependency>

<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-gson</artifactId>
<version>1.44.1</version>
<version>1.45.0</version>
</dependency>

<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
<version>1.23.0</version>
<version>1.27.0</version>
</dependency>

<!-- For HTTP Client -->
Expand Down Expand Up @@ -128,13 +128,13 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
<version>2.11.0</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
<version>1.18.34</version>
</dependency>

</dependencies>
Expand Down
Loading