pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>litemall-wx-api</artifactId>
  5. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>org.linlinjava</groupId>
  8. <artifactId>litemall</artifactId>
  9. <version>0.1.0</version>
  10. </parent>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-mail</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.linlinjava</groupId>
  18. <artifactId>litemall-core</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <artifactId>commons-lang</artifactId>
  22. <groupId>commons-lang</groupId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.linlinjava</groupId>
  28. <artifactId>litemall-db</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.binarywang</groupId>
  32. <artifactId>weixin-java-pay</artifactId>
  33. <exclusions>
  34. <exclusion>
  35. <artifactId>qrcode-utils</artifactId>
  36. <groupId>com.github.binarywang</groupId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.github.binarywang</groupId>
  42. <artifactId>weixin-java-miniapp</artifactId>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. <configuration>
  51. <executable>true</executable>
  52. </configuration>
  53. <executions>
  54. <execution>
  55. <goals>
  56. <goal>repackage</goal>
  57. </goals>
  58. <configuration>
  59. <classifier>exec</classifier>
  60. </configuration>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>