pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.common</artifactId>
  7. <version>2.0.1</version>
  8. </parent>
  9. <groupId>net.ranides</groupId>
  10. <artifactId>assira.drafts</artifactId>
  11. <version>1.0</version>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <toolsjar>${java.home}/../lib/tools.jar</toolsjar>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>net.ranides</groupId>
  19. <artifactId>assira</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.sun</groupId>
  23. <artifactId>tools</artifactId>
  24. <version>${java.version}</version>
  25. <scope>system</scope>
  26. <systemPath>${toolsjar}</systemPath>
  27. </dependency>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.12</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.hamcrest</groupId>
  36. <artifactId>hamcrest-core</artifactId>
  37. <version>1.3</version>
  38. <scope>test</scope>
  39. </dependency>
  40. </dependencies>
  41. </project>