pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.techempower</groupId>
  6. <artifactId>revenj</artifactId>
  7. <name>Revenj.JVM</name>
  8. <packaging>war</packaging>
  9. <version>1.1.0</version>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>11</maven.compiler.source>
  13. <maven.compiler.target>11</maven.compiler.target>
  14. <jaxb.version>2.4.0-b180830.0438</jaxb.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.revenj</groupId>
  19. <artifactId>revenj-core</artifactId>
  20. <version>1.2.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>javax.servlet</groupId>
  24. <artifactId>servlet-api</artifactId>
  25. <version>2.5</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.fizzed</groupId>
  30. <artifactId>rocker-runtime</artifactId>
  31. <version>1.2.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.glassfish.jaxb</groupId>
  35. <artifactId>jaxb-runtime</artifactId>
  36. <version>${jaxb.version}</version>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>com.dslplatform</groupId>
  43. <artifactId>dsl-platform-maven-plugin</artifactId>
  44. <version>1.2.0</version>
  45. <executions>
  46. <execution>
  47. <phase>generate-sources</phase>
  48. <goals>
  49. <goal>generate-code</goal>
  50. </goals>
  51. <configuration>
  52. <target>revenj.java</target>
  53. <dsl>${project.build.sourceDirectory}</dsl>
  54. <namespace>dsl</namespace>
  55. <compiler>${project.basedir}/dsl-compiler.exe</compiler>
  56. <options>
  57. <option>manual-json</option>
  58. </options>
  59. </configuration>
  60. </execution>
  61. </executions>
  62. </plugin>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.8.0</version>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-war-plugin</artifactId>
  71. <version>2.6</version>
  72. <configuration>
  73. <warName>revenj</warName>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>com.fizzed</groupId>
  78. <artifactId>rocker-maven-plugin</artifactId>
  79. <version>1.2.1</version>
  80. <executions>
  81. <execution>
  82. <id>generate-rocker-templates</id>
  83. <phase>generate-sources</phase>
  84. <goals>
  85. <goal>generate</goal>
  86. </goals>
  87. </execution>
  88. </executions>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>