pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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.g4interpreter</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. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>net.ranides</groupId>
  24. <artifactId>assira.commons</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>net.ranides</groupId>
  28. <artifactId>assira.core</artifactId>
  29. <type>test-jar</type>
  30. </dependency>
  31. <dependency>
  32. <groupId>net.ranides</groupId>
  33. <artifactId>assira.junit</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.antlr</groupId>
  41. <artifactId>antlr4-runtime</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.antlr</groupId>
  45. <artifactId>antlr4</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>slf4j-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.google.code.findbugs</groupId>
  53. <artifactId>annotations</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. </dependency>
  59. </dependencies>
  60. </project>