pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <parent>
  6. <groupId>com.cretin</groupId>
  7. <artifactId>webroot</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>translate-tools</artifactId>
  13. <dependencies>
  14. <!-- <dependency>-->
  15. <!-- <groupId>com.cretin</groupId>-->
  16. <!-- <artifactId>web-core</artifactId>-->
  17. <!-- <version>0.0.1-SNAPSHOT</version>-->
  18. <!-- </dependency>-->
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-web</artifactId>
  22. <version>5.2.2.RELEASE</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>dom4j</groupId>
  26. <artifactId>dom4j</artifactId>
  27. <version>1.6.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>jaxen</groupId>
  31. <artifactId>jaxen</artifactId>
  32. <version>1.1.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.httpcomponents</groupId>
  36. <artifactId>httpclient</artifactId>
  37. <version>4.5.7</version>
  38. </dependency>
  39. <!--gson-->
  40. <dependency>
  41. <groupId>com.google.code.gson</groupId>
  42. <artifactId>gson</artifactId>
  43. <version>2.8.6</version>
  44. </dependency>
  45. </dependencies>
  46. </project>