Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenArzt committed Sep 20, 2024
1 parent 07d9b66 commit 840e2ef
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
28 changes: 14 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
<maven-nexus-staging-plugin.version>1.6.13</maven-nexus-staging-plugin.version>
<maven-gpg-plugin.version>3.2.2</maven-gpg-plugin.version>
<maven-nexus-staging-plugin.version>1.7.0</maven-nexus-staging-plugin.version>
<maven-gpg-plugin.version>3.2.6</maven-gpg-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-checkstyle-plugin.version>3.3.1</maven-checkstyle-plugin.version>
<maven-checkstyle-plugin.version>3.5.0</maven-checkstyle-plugin.version>
<checkstyle.version>8.18</checkstyle.version>
<checkstyle.dir.path>${basedir}/codingstyle</checkstyle.dir.path>
<checkstyle.file.path>${checkstyle.dir.path}/soot_checkstyle_checks.xml</checkstyle.file.path>
Expand Down Expand Up @@ -169,7 +169,7 @@
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>9.8.0-8</version>
<version>12.5</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -437,7 +437,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
<version>2.17.0</version>
</dependency>
<dependency>
<groupId>org.smali</groupId>
Expand Down Expand Up @@ -467,7 +467,7 @@
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.28.0-GA</version>
<version>3.30.2-GA</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -478,7 +478,7 @@
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.10.11</version>
<version>1.10.15</version>
<scope>provided</scope>
</dependency>
<!-- Local dependencies -->
Expand Down Expand Up @@ -510,12 +510,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.3</version>
<version>2.0.16</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.3</version>
<version>2.0.16</version>
<scope>test</scope>
</dependency>
<!-- Testing dependencies -->
Expand All @@ -534,7 +534,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.6.0</version> <!-- or higher, correspondning to powermock-version -->
<version>5.13.0</version> <!-- or higher, correspondning to powermock-version -->
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -560,17 +560,17 @@
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>2.1.1</version>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>3.0.0</version>
<version>4.0.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>3.0.0</version>
<version>4.0.5</version>
</dependency>
<!-- Dotnet Dependencies -->
<dependency>
Expand All @@ -581,7 +581,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
<version>3.25.3</version>
<version>3.25.5</version>
</dependency>
</dependencies>

Expand Down
1 change: 0 additions & 1 deletion src/test/java/soot/baf/ASMBackendMockingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
* #L%
*/

import static org.mockito.Matchers.any;
import static org.mockito.Mockito.*;
import static org.objectweb.asm.Opcodes.*;
import static org.powermock.api.mockito.PowerMockito.doCallRealMethod;
Expand Down

0 comments on commit 840e2ef

Please sign in to comment.