pom.xml 934 B

1234567891011121314151617181920212223242526272829303132
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>x_test</groupId>
  5. <artifactId>x_test</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>3.5.1</version>
  12. <configuration>
  13. <source />
  14. <target />
  15. </configuration>
  16. </plugin>
  17. </plugins>
  18. </build>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.xeustechnologies</groupId>
  22. <artifactId>jcl-core</artifactId>
  23. <version>2.7</version>
  24. </dependency>
  25. <!-- https://mvnrepository.com/artifact/javax/javaee-web-api -->
  26. <dependency>
  27. <groupId>javax</groupId>
  28. <artifactId>javaee-web-api</artifactId>
  29. <version>7.0</version>
  30. </dependency>
  31. </dependencies>
  32. </project>