Spot discoverer powered by SV technology.

pom.xml 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>br.com.soundview</groupId>
  5. <artifactId>BKE_SVSpotDiscoverer</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>BKE_SVSpotDiscoverer</name>
  8. <dependencies>
  9. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  10. <dependency>
  11. <groupId>commons-io</groupId>
  12. <artifactId>commons-io</artifactId>
  13. <version>2.5</version>
  14. </dependency>
  15. <!-- https://mvnrepository.com/artifact/junit/junit -->
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>4.12</version>
  20. </dependency>
  21. <!-- https://mvnrepository.com/artifact/org/jaudiotagger -->
  22. <dependency>
  23. <groupId>org</groupId>
  24. <artifactId>jaudiotagger</artifactId>
  25. <version>2.0.3</version>
  26. </dependency>
  27. <!-- https://mvnrepository.com/artifact/log4j/log4j -->
  28. <dependency>
  29. <groupId>log4j</groupId>
  30. <artifactId>log4j</artifactId>
  31. <version>1.2.17</version>
  32. </dependency>
  33. <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
  34. <dependency>
  35. <groupId>org.mockito</groupId>
  36. <artifactId>mockito-all</artifactId>
  37. <version>1.10.19</version>
  38. </dependency>
  39. </dependencies>
  40. <properties>
  41. <java.version>1.8</java.version>
  42. </properties>
  43. </project>