pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>mianhuatang</artifactId>
  7. <groupId>com.hboxs</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <packaging>jar</packaging>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>app-api</artifactId>
  13. <dependencies>
  14. <!-- paytm支付-->
  15. <dependency>
  16. <groupId>myjar</groupId>
  17. <artifactId>PaytmChecksum</artifactId>
  18. <version>1.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.hboxs</groupId>
  22. <artifactId>app-common</artifactId>
  23. <version>1.0-SNAPSHOT</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.hboxs</groupId>
  27. <artifactId>app-service</artifactId>
  28. <version>1.0-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.httpcomponents</groupId>
  32. <artifactId>httpclient</artifactId>
  33. <version>4.4</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.httpcomponents</groupId>
  37. <artifactId>httpmime</artifactId>
  38. <version>4.4</version>
  39. </dependency>
  40. </dependencies>
  41. </project>