pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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>consumer</artifactId>
  7. <parent>
  8. <groupId>cn.lili</groupId>
  9. <artifactId>lili-shop-parent</artifactId>
  10. <version>4.2.0</version>
  11. </parent>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.lili</groupId>
  15. <artifactId>framework</artifactId>
  16. <version>1.0.1</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.xuxueli</groupId>
  20. <artifactId>xxl-job-core</artifactId>
  21. <version>2.2.0</version>
  22. </dependency>
  23. </dependencies>
  24. <repositories>
  25. <repository>
  26. <id>maven-repository</id>
  27. <url>file:///${project.basedir}/maven-repository</url>
  28. </repository>
  29. </repositories>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>