pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <artifactId>jolokia-admin-server</artifactId>
  6. <groupId>com.yihu</groupId>
  7. <version>1.0.0</version>
  8. <modelVersion>4.0.0</modelVersion>
  9. <properties>
  10. <version.spring-framework>4.2.5.RELEASE</version.spring-framework>
  11. <version.spring-boot>1.3.5.RELEASE</version.spring-boot>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>de.codecentric</groupId>
  16. <artifactId>spring-boot-admin-server</artifactId>
  17. <version>1.3.5</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>de.codecentric</groupId>
  21. <artifactId>spring-boot-admin-server-ui</artifactId>
  22. <version>1.3.5</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-actuator-docs</artifactId>
  27. <version>${version.spring-boot}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-actuator</artifactId>
  32. <version>${version.spring-boot}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-context</artifactId>
  37. <version>${version.spring-framework}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-aop</artifactId>
  42. <version>${version.spring-boot}</version>
  43. </dependency>
  44. </dependencies>
  45. </project>