pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <!-- this is last version of "antlr4" artifact compatible with JDK 8 (ANTLR 4 Tool) -->
  21. <antlr.version>4.9.3</antlr.version>
  22. </properties>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.antlr</groupId>
  27. <artifactId>antlr4-maven-plugin</artifactId>
  28. <version>${antlr.version}</version>
  29. <executions>
  30. <execution>
  31. <goals>
  32. <goal>antlr4</goal>
  33. </goals>
  34. </execution>
  35. </executions>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. <dependencies>
  40. <dependency>
  41. <groupId>net.ranides</groupId>
  42. <artifactId>assira.commons</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>net.ranides</groupId>
  46. <artifactId>assira.core</artifactId>
  47. <type>test-jar</type>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.ranides</groupId>
  51. <artifactId>assira.junit</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>junit</groupId>
  55. <artifactId>junit</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.antlr</groupId>
  59. <artifactId>antlr4-runtime</artifactId>
  60. <version>${antlr.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.antlr</groupId>
  64. <artifactId>antlr4</artifactId>
  65. <version>${antlr.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.slf4j</groupId>
  69. <artifactId>slf4j-api</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.google.code.findbugs</groupId>
  73. <artifactId>annotations</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. </dependency>
  79. </dependencies>
  80. </project>