pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.tripto</groupId>
  4. <artifactId>hotels_api</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <packaging>war</packaging>
  7. <dependencies>
  8. <dependency>
  9. <groupId>log4j</groupId>
  10. <artifactId>log4j</artifactId>
  11. <version>1.2.17</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>com.alibaba</groupId>
  15. <artifactId>fastjson</artifactId>
  16. <version>1.2.47</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.json</groupId>
  20. <artifactId>json</artifactId>
  21. <version>20160810</version>
  22. </dependency>
  23. <!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
  24. <dependency>
  25. <groupId>dom4j</groupId>
  26. <artifactId>dom4j</artifactId>
  27. <version>1.6.1</version>
  28. </dependency>
  29. <!-- https://mvnrepository.com/artifact/jaxen/jaxen -->
  30. <dependency>
  31. <groupId>jaxen</groupId>
  32. <artifactId>jaxen</artifactId>
  33. <version>1.1.6</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jsoup</groupId>
  37. <artifactId>jsoup</artifactId>
  38. <version>1.8.3</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <version>6.0.6</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.tripto</groupId>
  47. <artifactId>hotels_rpc</artifactId>
  48. <version>0.0.1-SNAPSHOT</version>
  49. </dependency>
  50. </dependencies>
  51. <repositories>
  52. <repository>
  53. <id>public</id>
  54. <name>public</name>
  55. <url>http://123.103.51.13:8088/nexus/content/groups/public/</url>
  56. <snapshots>
  57. <enabled>true</enabled>
  58. </snapshots>
  59. </repository>
  60. </repositories>
  61. <distributionManagement>
  62. <repository>
  63. <id>releases</id>
  64. <name>releases</name>
  65. <url>http://123.103.51.13:8088/nexus/content/repositories/releases/</url>
  66. </repository>
  67. <snapshotRepository>
  68. <id>snapshots</id>
  69. <name>snapshots</name>
  70. <url>http://123.103.51.13:8088/nexus/content/repositories/snapshots/</url>
  71. </snapshotRepository>
  72. </distributionManagement>
  73. </project>