Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 20 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<sootup.version>2.0.0</sootup.version>
<opal.version>5.0.0</opal.version>
<crysl.version>4.0.2</crysl.version>
<junit.version>5.12.2</junit.version>
<junit.version>5.13.1</junit.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -91,12 +91,8 @@
<artifactId>guava</artifactId>
<version>33.4.8-jre</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

<!-- Logger API and provider -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand All @@ -107,6 +103,20 @@
<artifactId>slf4j-simple</artifactId>
<version>2.0.17</version>
</dependency>

<!-- JUnit API and engine -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand All @@ -119,8 +129,10 @@
<version>3.8.1</version>
<configuration>
<ignoredUnusedDeclaredDependencies>
<!-- The logger api requires a concrete provider that is not used by this project: https://www.slf4j.org/manual.html -->
<!-- The logger api requires a concrete provider that is not explicitly used by this project: https://www.slf4j.org/manual.html -->
<ignoredUnusedDeclaredDependency>org.slf4j:slf4j-simple</ignoredUnusedDeclaredDependency>
<!-- The JUnit api requires a concrete engine that is not explicitly used by this project -->
<ignoredUnusedDeclaredDependency>org.junit.jupiter:junit-jupiter-engine</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
<executions>
Expand Down Expand Up @@ -281,13 +293,6 @@
</property>
</systemPropertyVariables>
</configuration>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<!-- This plugin is required for releases to Maven Central. If Javadoc is used,
Expand Down