pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <properties>
  12. <docker.image.prefix>litemall</docker.image.prefix>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-mail</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.linlinjava</groupId>
  21. <artifactId>litemall-core</artifactId>
  22. <exclusions>
  23. <exclusion>
  24. <artifactId>commons-lang</artifactId>
  25. <groupId>commons-lang</groupId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.linlinjava</groupId>
  31. <artifactId>litemall-db</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.binarywang</groupId>
  35. <artifactId>weixin-java-pay</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>qrcode-utils</artifactId>
  39. <groupId>com.github.binarywang</groupId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.binarywang</groupId>
  45. <artifactId>weixin-java-miniapp</artifactId>
  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. <executable>true</executable>
  55. </configuration>
  56. <executions>
  57. <execution>
  58. <goals>
  59. <goal>repackage</goal>
  60. </goals>
  61. <configuration>
  62. <classifier>exec</classifier>
  63. </configuration>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. <plugin>
  68. <groupId>com.spotify</groupId>
  69. <artifactId>docker-maven-plugin</artifactId>
  70. <version>0.4.13</version>
  71. <configuration>
  72. <imageName>${docker.image.prefix}/${project.artifactId}</imageName>
  73. <dockerDirectory>src/main/docker</dockerDirectory>
  74. <resources>
  75. <resource>
  76. <targetPath>/</targetPath>
  77. <directory>${project.build.directory}</directory>
  78. <include>${project.build.finalName}.jar</include>
  79. </resource>
  80. </resources>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>