pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.0.3</version>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.revenj</groupId>
  16. <artifactId>revenj-core</artifactId>
  17. <version>1.1.3</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.apache.commons</groupId>
  21. <artifactId>commons-lang3</artifactId>
  22. <version>3.4</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>javax.servlet</groupId>
  26. <artifactId>servlet-api</artifactId>
  27. <version>2.5</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>com.dslplatform</groupId>
  35. <artifactId>dsl-platform-maven-plugin</artifactId>
  36. <version>1.1.2</version>
  37. <executions>
  38. <execution>
  39. <phase>generate-sources</phase>
  40. <goals>
  41. <goal>generate-code</goal>
  42. </goals>
  43. <configuration>
  44. <target>revenj.java</target>
  45. <dsl>${project.build.sourceDirectory}</dsl>
  46. <namespace>dsl</namespace>
  47. <compiler>${project.basedir}/../../../installs/dsl-compiler.exe</compiler>
  48. <options>
  49. <option>manual-json</option>
  50. </options>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <version>3.3</version>
  59. <configuration>
  60. <source>1.8</source>
  61. <target>1.8</target>
  62. </configuration>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-war-plugin</artifactId>
  67. <version>2.6</version>
  68. <configuration>
  69. <warName>revenj</warName>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>