Skip to content

Commit c14afe3

Browse files
committed
Adding slf4j as dependency for all subprojects and log4j as test dependency
1 parent 4671fce commit c14afe3

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

pom.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,33 @@
2121
<module>soot-infoflow-cmd</module>
2222
</modules>
2323

24+
<dependencyManagement>
25+
<dependencies>
26+
<dependency>
27+
<groupId>org.slf4j</groupId>
28+
<artifactId>slf4j-api</artifactId>
29+
<version>1.7.5</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>log4j</groupId>
33+
<artifactId>log4j</artifactId>
34+
<version>1.2.15</version>
35+
<scope>test</scope>
36+
<exclusions>
37+
<exclusion>
38+
<groupId>com.sun.jmx</groupId>
39+
<artifactId>jmxri</artifactId>
40+
</exclusion>
41+
<exclusion>
42+
<groupId>com.sun.jdmk</groupId>
43+
<artifactId>jmxtools</artifactId>
44+
</exclusion>
45+
<exclusion>
46+
<groupId>javax.jms</groupId>
47+
<artifactId>jms</artifactId>
48+
</exclusion>
49+
</exclusions>
50+
</dependency>
51+
</dependencies>
52+
</dependencyManagement>
2453
</project>

0 commit comments

Comments
 (0)