pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <modelVersion>4.0.0</modelVersion>
  6. <artifactId>seller-api</artifactId>
  7. <parent>
  8. <groupId>cn.lili</groupId>
  9. <artifactId>lili-shop-parent</artifactId>
  10. <version>${revision}</version>
  11. <relativePath>../pom.xml</relativePath>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.lili</groupId>
  16. <artifactId>framework</artifactId>
  17. <version>${revision}</version>
  18. </dependency>
  19. </dependencies>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-maven-plugin</artifactId>
  25. <configuration>
  26. <!-- maven打包时会将外部引入的jar包(比如在根目录下或resource文件下新加外部jar包)打包到项目jar -->
  27. <includeSystemScope>true</includeSystemScope>
  28. </configuration>
  29. </plugin>
  30. </plugins>
  31. </build>
  32. </project>