pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.squidpony</groupId>
  8. <artifactId>squidlib-parent</artifactId>
  9. <version>3.0.0-SNAPSHOT</version>
  10. <relativePath>../</relativePath>
  11. </parent>
  12. <artifactId>squidlib-util</artifactId>
  13. <name>squidlib-util</name>
  14. <description>SquidLib platform-independent logic and utility code. Please refer to
  15. https://github.com/SquidPony/SquidLib .
  16. </description>
  17. <build>
  18. <resources>
  19. <resource>
  20. <directory>src/main/resources</directory>
  21. </resource>
  22. </resources>
  23. <testSourceDirectory>src/test/java</testSourceDirectory>
  24. <testOutputDirectory>target/test-classes</testOutputDirectory>
  25. </build>
  26. <dependencies>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <version>${junit.version}</version>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.tommyettinger</groupId>
  35. <artifactId>regexodus</artifactId>
  36. <version>${regexodus.version}</version>
  37. </dependency>
  38. </dependencies>
  39. </project>