pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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>buyer-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. <dependency>
  20. <groupId>com.jfinal</groupId>
  21. <artifactId>enjoy</artifactId>
  22. <version>${enjoy.version}</version>
  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. <!-- maven打包时会将外部引入的jar包(比如在根目录下或resource文件下新加外部jar包)打包到项目jar -->
  32. <includeSystemScope>true</includeSystemScope>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>