pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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-admin-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.linlinjava</groupId>
  14. <artifactId>litemall-core</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.linlinjava</groupId>
  18. <artifactId>litemall-db</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.binarywang</groupId>
  22. <artifactId>weixin-java-miniapp</artifactId>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-maven-plugin</artifactId>
  30. <configuration>
  31. <executable>true</executable>
  32. </configuration>
  33. <executions>
  34. <execution>
  35. <goals>
  36. <goal>repackage</goal>
  37. </goals>
  38. <configuration>
  39. <classifier>exec</classifier>
  40. </configuration>
  41. </execution>
  42. </executions>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>