pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <groupId>net.ranides</groupId>
  11. <artifactId>assira.drafts</artifactId>
  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. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>net.ranides</groupId>
  35. <artifactId>assira.asm</artifactId>
  36. </dependency>
  37. </dependencies>
  38. </project>