pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>${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.xuxueli</groupId>
  21. <artifactId>xxl-job-core</artifactId>
  22. <version>${xxl-job}</version>
  23. </dependency>
  24. </dependencies>
  25. <repositories>
  26. <repository>
  27. <id>maven-repository</id>
  28. <url>file:///${project.basedir}/maven-repository</url>
  29. </repository>
  30. </repositories>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>