Skip to content

Commit 856f824

Browse files
author
Andreas Dann
committed
update deps
1 parent 4f262f6 commit 856f824

File tree

1 file changed

+80
-20
lines changed

1 file changed

+80
-20
lines changed

pom.xml

Lines changed: 80 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,18 @@
66

77
<groupId>de.upb</groupId>
88
<artifactId>sootdiff</artifactId>
9-
<version>1.0</version>
9+
<version>2.3-SNAPSHOT</version>
10+
1011

1112
<properties>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1214
<maven.compiler.source>1.8</maven.compiler.source>
1315
<maven.compiler.target>1.8</maven.compiler.target>
14-
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
16+
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
1517
</properties>
1618

17-
1819
<build>
1920
<plugins>
20-
21-
2221
<plugin>
2322
<groupId>org.apache.maven.plugins</groupId>
2423
<artifactId>maven-compiler-plugin</artifactId>
@@ -27,9 +26,7 @@
2726
<source>${maven.compiler.source}</source>
2827
<target>${maven.compiler.target}</target>
2928
</configuration>
30-
3129
</plugin>
32-
3330
<plugin>
3431
<artifactId>maven-assembly-plugin</artifactId>
3532
<configuration>
@@ -44,49 +41,112 @@
4441
</configuration>
4542
</plugin>
4643

44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-release-plugin</artifactId>
47+
<version>2.5.3</version>
48+
</plugin>
49+
50+
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-surefire-plugin</artifactId>
54+
<version>3.0.0-M4</version>
55+
<configuration>
56+
<trimStackTrace>false</trimStackTrace>
57+
<reuseForks>false</reuseForks>
58+
<forkCount>1</forkCount>
59+
</configuration>
60+
</plugin>
61+
62+
63+
<plugin>
64+
<artifactId>exec-maven-plugin</artifactId>
65+
<groupId>org.codehaus.mojo</groupId>
66+
<version>1.6.0</version>
67+
<executions>
68+
<execution><!-- Run our version calculation script -->
69+
<id>Compile Test Classes/Resources</id>
70+
<phase>generate-sources</phase>
71+
<goals>
72+
<goal>exec</goal>
73+
</goals>
74+
<configuration>
75+
<executable>${basedir}/src/test/resources/compile.sh</executable>
76+
</configuration>
77+
</execution>
78+
</executions>
79+
</plugin>
80+
4781
</plugins>
4882
</build>
4983

5084

5185
<dependencies>
5286
<dependency>
53-
<groupId>ca.mcgill.sable</groupId>
87+
<groupId>org.soot-oss</groupId>
5488
<artifactId>soot</artifactId>
55-
<version>3.2.0-SNAPSHOT</version>
89+
<version>4.2.1</version>
5690
</dependency>
5791

58-
5992
<dependency>
6093
<groupId>commons-cli</groupId>
6194
<artifactId>commons-cli</artifactId>
6295
<version>1.4</version>
6396
</dependency>
6497

98+
<dependency>
99+
<groupId>io.github.java-diff-utils</groupId>
100+
<artifactId>java-diff-utils</artifactId>
101+
<version>4.5</version>
102+
</dependency>
103+
104+
105+
<!-- tlsh -->
106+
<dependency>
107+
<groupId>com.trendmicro</groupId>
108+
<artifactId>tlsh</artifactId>
109+
<version>3.7.1</version>
110+
</dependency>
111+
112+
113+
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
114+
<dependency>
115+
<groupId>commons-codec</groupId>
116+
<artifactId>commons-codec</artifactId>
117+
<version>1.14</version>
118+
<scope>test</scope>
119+
</dependency>
120+
121+
<dependency>
122+
<groupId>com.google.code.findbugs</groupId>
123+
<artifactId>jsr305</artifactId>
124+
<version>3.0.2</version>
125+
</dependency>
65126

66127
<dependency>
67128
<groupId>org.apache.commons</groupId>
68129
<artifactId>commons-lang3</artifactId>
69-
<version>3.8.1</version>
130+
<version>3.9</version>
70131
</dependency>
71-
72132
<dependency>
73-
<groupId>io.github.java-diff-utils</groupId>
74-
<artifactId>java-diff-utils</artifactId>
75-
<version>4.0</version>
133+
<groupId>com.github.spotbugs</groupId>
134+
<artifactId>spotbugs-annotations</artifactId>
135+
<version>4.0.1</version>
76136
</dependency>
137+
77138
<dependency>
78139
<groupId>junit</groupId>
79140
<artifactId>junit</artifactId>
80-
<version>4.12</version>
141+
<version>4.13</version>
81142
<scope>test</scope>
82143
</dependency>
83-
84144
</dependencies>
145+
85146
<repositories>
86147
<repository>
87-
<id>soot-snapshot</id>
88-
<name>soot snapshots</name>
89-
<url>https://soot-build.cs.uni-paderborn.de/nexus/repository/swt-upb/</url>
148+
<id>jcenter</id>
149+
<url>https://jcenter.bintray.com/</url>
90150
</repository>
91151
</repositories>
92152

0 commit comments

Comments
 (0)