pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <parent>
  7. <artifactId>assira.project</artifactId>
  8. <groupId>net.ranides</groupId>
  9. <version>2.8.4-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>assira.grammar</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.groupId}:${project.artifactId}</name>
  14. <description>assira: ANTLR4 interpreter</description>
  15. <properties>
  16. <assira.junit.debug>false</assira.junit.debug>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. <!-- this is last version of "antlr4" artifact compatible with JDK 8 (ANTLR 4 Tool) -->
  20. <antlr.version>4.9.3</antlr.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>net.ranides</groupId>
  25. <artifactId>assira.commons</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>net.ranides</groupId>
  29. <artifactId>assira.core</artifactId>
  30. <type>test-jar</type>
  31. </dependency>
  32. <dependency>
  33. <groupId>net.ranides</groupId>
  34. <artifactId>assira.junit</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.antlr</groupId>
  42. <artifactId>antlr4-runtime</artifactId>
  43. <version>${antlr.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.antlr</groupId>
  47. <artifactId>antlr4</artifactId>
  48. <version>${antlr.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-api</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.google.code.findbugs</groupId>
  56. <artifactId>annotations</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. </dependency>
  62. </dependencies>
  63. </project>