|
6 | 6 |
|
7 | 7 | <groupId>de.upb</groupId> |
8 | 8 | <artifactId>sootdiff</artifactId> |
9 | | - <version>1.0</version> |
| 9 | + <version>2.3-SNAPSHOT</version> |
| 10 | + |
10 | 11 |
|
11 | 12 | <properties> |
| 13 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
12 | 14 | <maven.compiler.source>1.8</maven.compiler.source> |
13 | 15 | <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> |
15 | 17 | </properties> |
16 | 18 |
|
17 | | - |
18 | 19 | <build> |
19 | 20 | <plugins> |
20 | | - |
21 | | - |
22 | 21 | <plugin> |
23 | 22 | <groupId>org.apache.maven.plugins</groupId> |
24 | 23 | <artifactId>maven-compiler-plugin</artifactId> |
|
27 | 26 | <source>${maven.compiler.source}</source> |
28 | 27 | <target>${maven.compiler.target}</target> |
29 | 28 | </configuration> |
30 | | - |
31 | 29 | </plugin> |
32 | | - |
33 | 30 | <plugin> |
34 | 31 | <artifactId>maven-assembly-plugin</artifactId> |
35 | 32 | <configuration> |
|
44 | 41 | </configuration> |
45 | 42 | </plugin> |
46 | 43 |
|
| 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 | + |
47 | 81 | </plugins> |
48 | 82 | </build> |
49 | 83 |
|
50 | 84 |
|
51 | 85 | <dependencies> |
52 | 86 | <dependency> |
53 | | - <groupId>ca.mcgill.sable</groupId> |
| 87 | + <groupId>org.soot-oss</groupId> |
54 | 88 | <artifactId>soot</artifactId> |
55 | | - <version>3.2.0-SNAPSHOT</version> |
| 89 | + <version>4.2.1</version> |
56 | 90 | </dependency> |
57 | 91 |
|
58 | | - |
59 | 92 | <dependency> |
60 | 93 | <groupId>commons-cli</groupId> |
61 | 94 | <artifactId>commons-cli</artifactId> |
62 | 95 | <version>1.4</version> |
63 | 96 | </dependency> |
64 | 97 |
|
| 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> |
65 | 126 |
|
66 | 127 | <dependency> |
67 | 128 | <groupId>org.apache.commons</groupId> |
68 | 129 | <artifactId>commons-lang3</artifactId> |
69 | | - <version>3.8.1</version> |
| 130 | + <version>3.9</version> |
70 | 131 | </dependency> |
71 | | - |
72 | 132 | <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> |
76 | 136 | </dependency> |
| 137 | + |
77 | 138 | <dependency> |
78 | 139 | <groupId>junit</groupId> |
79 | 140 | <artifactId>junit</artifactId> |
80 | | - <version>4.12</version> |
| 141 | + <version>4.13</version> |
81 | 142 | <scope>test</scope> |
82 | 143 | </dependency> |
83 | | - |
84 | 144 | </dependencies> |
| 145 | + |
85 | 146 | <repositories> |
86 | 147 | <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> |
90 | 150 | </repository> |
91 | 151 | </repositories> |
92 | 152 |
|
|
0 commit comments