pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <properties>
  7. <enjoy.version>4.3</enjoy.version>
  8. </properties>
  9. <artifactId>buyer-api</artifactId>
  10. <parent>
  11. <groupId>cn.lili</groupId>
  12. <artifactId>lili-shop-parent</artifactId>
  13. <version>4.2.0</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>cn.lili</groupId>
  18. <artifactId>framework</artifactId>
  19. <version>4.2.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.jfinal</groupId>
  23. <artifactId>enjoy</artifactId>
  24. <version>${enjoy.version}</version>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-maven-plugin</artifactId>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. </project>