Skip to content

Commit

Permalink
Upgrade dependencies to fix security and compatibility problems
Browse files Browse the repository at this point in the history
Security: bump junit and gson
Compatibility: bump mockito
  • Loading branch information
dependabot[bot] authored and ibaca committed May 21, 2022
1 parent 29b8715 commit 6c3231f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 16 deletions.
5 changes: 0 additions & 5 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
<packaging>jar</packaging>
<name>AutoREST :: core</name>

<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>javax.ws.rs</groupId>
Expand Down
2 changes: 1 addition & 1 deletion gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>com.google.elemental2</groupId>
<artifactId>elemental2-dom</artifactId>
<version>1.0.0-RC1</version>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
Expand Down
2 changes: 1 addition & 1 deletion jre/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.2</version>
<version>2.8.9</version>
</dependency>
<dependency>
<groupId>com.intendia.gwt.autorest</groupId>
Expand Down
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<gwt.version>2.9.0-RC1</gwt.version>
<rxjava.version>2.2.10</rxjava.version>
<gwt.version>2.9.0</gwt.version>
<rxjava.version>2.2.20</rxjava.version>
<rxjava-gwt.version>${rxjava.version}-gwt1</rxjava-gwt.version>
</properties>

Expand Down Expand Up @@ -91,12 +91,12 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>4.13.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.0.52-beta</version>
<version>4.3.1</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -107,7 +107,7 @@
<plugin>
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.0-rc-9</version>
<version>1.0.1</version>
<extensions>true</extensions>
<configuration>
<failOnError>true</failOnError>
Expand All @@ -126,7 +126,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.10.1</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
6 changes: 3 additions & 3 deletions processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<dependency>
<groupId>com.google.auto</groupId>
<artifactId>auto-common</artifactId>
<version>0.10</version>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
<artifactId>javapoet</artifactId>
<version>1.10.0</version>
<version>1.13.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -51,7 +51,7 @@
<dependency>
<groupId>com.google.testing.compile</groupId>
<artifactId>compile-testing</artifactId>
<version>0.15</version>
<version>0.19</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 6c3231f

Please sign in to comment.