pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>xyz.ignatz</groupId>
  7. <artifactId>antlr</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>java9-flowchart</module>
  12. <module>aidl-to-json</module>
  13. <module>map-to-json</module>
  14. <module>flowchart</module>
  15. <module>antlr4-utils</module>
  16. </modules>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.antlr</groupId>
  20. <artifactId>antlr4</artifactId>
  21. <version>4.9.2</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>xyz.ignatz</groupId>
  25. <artifactId>antlr4-utils</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. </dependencies>
  29. <properties>
  30. <maven.compiler.source>8</maven.compiler.source>
  31. <maven.compiler.target>8</maven.compiler.target>
  32. </properties>
  33. </project>