Skip to content

Commit

Permalink
Upgrade dependencies (#180)
Browse files Browse the repository at this point in the history
Co-authored-by: Caesar Ralf <caesarralf@spotify.com>
  • Loading branch information
caesar-ralf and caesar-ralf committed Sep 22, 2023
1 parent 56ea810 commit f464343
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,14 @@
<maven.compiler.target>${maven.compiler.release}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputTimestamp>1695388591</project.build.outputTimestamp>
<maven.version>3.9.4</maven.version>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.3</version>
<version>${maven.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
Expand All @@ -101,6 +102,11 @@
<artifactId>google-java-format</artifactId>
<version>1.17.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.1.2-jre</version>
</dependency>

<dependency>
<groupId>io.norberg</groupId>
Expand All @@ -112,7 +118,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -124,25 +130,32 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.9.3</version>
<version>${maven.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<version>3.9.3</version>
<version>${maven.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>0.28</version>
<version>1.1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>4.3.1</version>
<version>5.2.0</version>
<scope>test</scope>
</dependency>
<!-- with support for java 21. Can be removed when mockito includes it -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.14.8</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit f464343

Please sign in to comment.