pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. </dependencies>
  21. <build>
  22. <plugins>
  23. <plugin>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-maven-plugin</artifactId>
  26. <configuration>
  27. <executable>true</executable>
  28. </configuration>
  29. <executions>
  30. <execution>
  31. <goals>
  32. <goal>repackage</goal>
  33. </goals>
  34. <configuration>
  35. <classifier>exec</classifier>
  36. </configuration>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>