pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.lili</groupId>
  7. <artifactId>lili-shop-parent</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>admin</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>de.codecentric</groupId>
  15. <artifactId>spring-boot-admin-starter-server</artifactId>
  16. <version>${spring-boot-admin}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-security</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>net.logstash.logback</groupId>
  28. <artifactId>logstash-logback-encoder</artifactId>
  29. <version>${logstash-logback-encoder}</version>
  30. </dependency>
  31. <!-- <dependency>-->
  32. <!-- <groupId>org.springframework.boot</groupId>-->
  33. <!-- <artifactId>spring-boot-starter-mail</artifactId>-->
  34. <!-- </dependency> -->
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. </project>