pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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.ui</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.groupId}:${project.artifactId}</name>
  14. <description>assira: general purpose java library: runtime for JDK8</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. </properties>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.antlr</groupId>
  24. <artifactId>antlr4-maven-plugin</artifactId>
  25. <version>${antlr.version}</version>
  26. <executions>
  27. <execution>
  28. <goals>
  29. <goal>antlr4</goal>
  30. </goals>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. </plugins>
  35. </build>
  36. <dependencies>
  37. <dependency>
  38. <groupId>net.ranides</groupId>
  39. <artifactId>assira.core</artifactId>
  40. <type>jar</type>
  41. </dependency>
  42. <dependency>
  43. <groupId>net.ranides</groupId>
  44. <artifactId>assira.commons</artifactId>
  45. <type>jar</type>
  46. </dependency>
  47. <dependency>
  48. <groupId>net.ranides</groupId>
  49. <artifactId>assira.g4interpreter</artifactId>
  50. <type>jar</type>
  51. </dependency>
  52. <dependency>
  53. <groupId>net.ranides</groupId>
  54. <artifactId>assira.junit</artifactId>
  55. </dependency>
  56. <!-- <dependency>-->
  57. <!-- <groupId>org.antlr</groupId>-->
  58. <!-- <artifactId>antlr4-runtime</artifactId>-->
  59. <!-- </dependency>-->
  60. <dependency>
  61. <groupId>junit</groupId>
  62. <artifactId>junit</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.slf4j</groupId>
  66. <artifactId>slf4j-api</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.google.code.findbugs</groupId>
  70. <artifactId>annotations</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. </dependency>
  76. </dependencies>
  77. </project>