pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <artifactId>shoppingMall</artifactId>
  7. <groupId>com.jwipc</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>shoppingMall-infra</artifactId>
  12. <name>${project.artifactId}</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${parent.groupId}</groupId>
  16. <artifactId>jwipc-web</artifactId>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>${parent.groupId}</groupId>
  21. <artifactId>jwipc-infra</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alibaba.fastjson2</groupId>
  25. <artifactId>fastjson2</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>joda-time</groupId>
  29. <artifactId>joda-time</artifactId>
  30. <version>2.9.6</version>
  31. </dependency>
  32. <!-- <dependency>-->
  33. <!-- <groupId>commons-net</groupId>-->
  34. <!-- <artifactId>commons-net</artifactId>-->
  35. <!-- <version>3.5</version>-->
  36. <!-- </dependency>-->
  37. <dependency>
  38. <groupId>org.apache.httpcomponents</groupId>
  39. <artifactId>fluent-hc</artifactId>
  40. <version>4.3.5</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.httpcomponents</groupId>
  44. <artifactId>httpclient</artifactId>
  45. <version>4.5.3</version>
  46. </dependency>
  47. <!-- <dependency>-->
  48. <!-- <groupId>com.jwipc</groupId>-->
  49. <!-- <artifactId>inquiry-client</artifactId>-->
  50. <!-- </dependency>-->
  51. <!-- <dependency>-->
  52. <!-- <groupId>javax.servlet</groupId>-->
  53. <!-- <artifactId>javax.servlet-api</artifactId>-->
  54. <!-- </dependency>-->
  55. <!-- <dependency>-->
  56. <!-- <groupId>org.apache.poi</groupId>-->
  57. <!-- <artifactId>poi</artifactId>-->
  58. <!-- <version>4.1.2</version>-->
  59. <!-- </dependency>-->
  60. </dependencies>
  61. </project>