Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
martinpaljak committed Feb 28, 2024
1 parent 5b33e61 commit 6bc38b5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.3/apache-maven-3.9.3-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
17 changes: 13 additions & 4 deletions capfile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.8.0</version>
<version>7.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.7</version>
<version>2.0.12</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -29,7 +35,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.12.1</version>
<executions>
<execution>
<id>default-compile</id>
Expand Down Expand Up @@ -63,14 +69,17 @@
<excludes>
<exclude>module-info.java</exclude>
</excludes>
<compilerArgs combine.children="append">
<arg>-Xlint:-options</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.7.3.4</version>
<version>4.8.3.1</version>
<configuration>
<excludeFilterFile>spotbugs.xml</excludeFilterFile>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
<repository>
<id>javacard-pro</id>
<name>javacard.pro</name>
<url>https://javacard.pro/maven/</url>
<url>https://mvn.javacard.pro/maven/</url>
</repository>
<repository>
<id>javacard-pro-snapshots</id>
<url>https://javacard.pro/maven/SNAPSHOTS/</url>
<url>https://mvn.javacard.pro/maven/SNAPSHOTS/</url>
</repository>
</repositories>
<!-- Default is publishing to private Maven repo on javacard.pro -->
Expand Down
2 changes: 1 addition & 1 deletion task/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.13</version>
<version>1.10.14</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
Expand Down

0 comments on commit 6bc38b5

Please sign in to comment.