pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.9.1-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. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-surefire-plugin</artifactId>
  37. <configuration>
  38. <excludedGroups>net.ranides.assira.junit.JCategories$Slow</excludedGroups>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <dependencies>
  44. <dependency>
  45. <groupId>net.ranides</groupId>
  46. <artifactId>assira.core</artifactId>
  47. <type>jar</type>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.ranides</groupId>
  51. <artifactId>assira.commons</artifactId>
  52. <type>jar</type>
  53. </dependency>
  54. <dependency>
  55. <groupId>net.ranides</groupId>
  56. <artifactId>assira.g4interpreter</artifactId>
  57. <type>jar</type>
  58. </dependency>
  59. <dependency>
  60. <groupId>net.ranides</groupId>
  61. <artifactId>assira.junit</artifactId>
  62. </dependency>
  63. <!-- <dependency>-->
  64. <!-- <groupId>org.antlr</groupId>-->
  65. <!-- <artifactId>antlr4-runtime</artifactId>-->
  66. <!-- </dependency>-->
  67. <dependency>
  68. <groupId>junit</groupId>
  69. <artifactId>junit</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.slf4j</groupId>
  73. <artifactId>slf4j-api</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.google.code.findbugs</groupId>
  77. <artifactId>annotations</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. </dependency>
  83. </dependencies>
  84. </project>