pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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. <parent>
  5. <groupId>net.ranides</groupId>
  6. <artifactId>assira.project</artifactId>
  7. <version>2.1.0</version>
  8. <relativePath>..</relativePath>
  9. </parent>
  10. <name>assira.junit</name>
  11. <groupId>net.ranides</groupId>
  12. <artifactId>assira.junit</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>junit</groupId>
  17. <artifactId>junit</artifactId>
  18. <scope>compile</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>net.ranides</groupId>
  22. <artifactId>assira.asm</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.google.code.findbugs</groupId>
  26. <artifactId>annotations</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-api</artifactId>
  31. </dependency>
  32. </dependencies>
  33. </project>