Merge "Fixed build dependencies"

This commit is contained in:
Jenkins 2014-12-11 22:28:01 +00:00 committed by Gerrit Code Review
commit 4aca81fd47

17
pom.xml
View File

@ -32,6 +32,12 @@
</executions> </executions>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<!-- Ensure all dependent jars are packaged together --> <!-- Ensure all dependent jars are packaged together -->
<plugin> <plugin>
@ -70,7 +76,14 @@
</build> </build>
<dependencies> <dependencies>
<!-- JUnit --> <!-- slf4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
</dependency>
<!-- JUnit -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
@ -108,4 +121,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>