pom.xml 1.3 KB

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