1
0

pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>kmall-haikong</artifactId>
  7. <groupId>com.kmall</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>kmall-manager</artifactId>
  12. <description>通用业务管理</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.kmall</groupId>
  16. <artifactId>kmall-common</artifactId>
  17. <version>${kmall-version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alipay</groupId>
  21. <artifactId>com-alipay</artifactId>
  22. <version>1.0</version>
  23. <scope>system</scope>
  24. <systemPath>${project.basedir}/src/main/resources/lib/alipay-sdk-java-3.3.0.jar</systemPath>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alipay.demo</groupId>
  28. <artifactId>com-alipay-demo</artifactId>
  29. <version>1.0</version>
  30. <scope>system</scope>
  31. <systemPath>${project.basedir}/src/main/resources/lib/alipay-trade-sdk-20161215.jar</systemPath>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alipay</groupId>
  35. <artifactId>commons-codec</artifactId>
  36. <version>1.0</version>
  37. <scope>system</scope>
  38. <systemPath>${project.basedir}/src/main/resources/lib/commons-codec-1.10.jar</systemPath>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alipay.demo</groupId>
  42. <artifactId>commons-configuration</artifactId>
  43. <version>1.0</version>
  44. <scope>system</scope>
  45. <systemPath>${project.basedir}/src/main/resources/lib/commons-configuration-1.10.jar</systemPath>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-maven-plugin</artifactId>
  53. <configuration>
  54. <includeSystemScope>true</includeSystemScope>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>