spring-boot-admin-server-2.7.10.pom 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2014-2020 the original author or authors.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>de.codecentric</groupId>
  22. <artifactId>spring-boot-admin-build</artifactId>
  23. <version>2.7.10</version>
  24. <relativePath>../spring-boot-admin-build</relativePath>
  25. </parent>
  26. <groupId>de.codecentric</groupId>
  27. <artifactId>spring-boot-admin-server</artifactId>
  28. <version>2.7.10</version>
  29. <name>Spring Boot Admin Server</name>
  30. <description>Spring Boot Admin Server</description>
  31. <url>https://github.com/codecentric/spring-boot-admin/spring-boot-admin-dependencies/spring-boot-admin-build/spring-boot-admin-server/</url>
  32. <organization>
  33. <name>codecentric AG</name>
  34. <url>http://www.codecentric.de</url>
  35. </organization>
  36. <licenses>
  37. <license>
  38. <name>Apache License, Version 2.0</name>
  39. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  40. </license>
  41. </licenses>
  42. <developers>
  43. <developer>
  44. <name>Johannes Edmeier</name>
  45. <email>johannes.edmeier@codecentric.de</email>
  46. <organization>codecentric AG</organization>
  47. </developer>
  48. <developer>
  49. <name>Thomas Bosch</name>
  50. <email>thomas.bosch@codecentric.de</email>
  51. <organization>codecentric AG</organization>
  52. </developer>
  53. <developer>
  54. <name>Dennis Schulte</name>
  55. <email>dennis.schulte@codecentric.de</email>
  56. <organization>codecentric AG</organization>
  57. </developer>
  58. </developers>
  59. <scm>
  60. <connection>scm:git:git://github.com/codecentric/spring-boot-admin.git/spring-boot-admin-dependencies/spring-boot-admin-build/spring-boot-admin-server</connection>
  61. <developerConnection>scm:git:ssh://git@github.com/codecentric/spring-boot-admin.git/spring-boot-admin-dependencies/spring-boot-admin-build/spring-boot-admin-server</developerConnection>
  62. <url>https://github.com/codecentric/spring-boot-admin/spring-boot-admin-dependencies/spring-boot-admin-build/spring-boot-admin-server</url>
  63. </scm>
  64. <dependencies>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter</artifactId>
  68. <version>2.7.5</version>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-webflux</artifactId>
  74. <version>2.7.5</version>
  75. <scope>compile</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-web</artifactId>
  80. <version>2.7.5</version>
  81. <scope>compile</scope>
  82. <optional>true</optional>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  87. <version>2.7.5</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-actuator</artifactId>
  93. <version>2.7.5</version>
  94. <scope>compile</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.httpcomponents</groupId>
  98. <artifactId>httpclient</artifactId>
  99. <version>4.5.13</version>
  100. <scope>compile</scope>
  101. <exclusions>
  102. <exclusion>
  103. <groupId>commons-logging</groupId>
  104. <artifactId>commons-logging</artifactId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.projectreactor.addons</groupId>
  110. <artifactId>reactor-extra</artifactId>
  111. <version>3.4.8</version>
  112. <scope>compile</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.projectlombok</groupId>
  116. <artifactId>lombok</artifactId>
  117. <version>1.18.24</version>
  118. <scope>compile</scope>
  119. <optional>true</optional>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.google.code.findbugs</groupId>
  123. <artifactId>jsr305</artifactId>
  124. <version>3.0.2</version>
  125. <scope>provided</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-starter-mail</artifactId>
  130. <version>2.7.5</version>
  131. <scope>compile</scope>
  132. <optional>true</optional>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.hazelcast</groupId>
  136. <artifactId>hazelcast</artifactId>
  137. <version>5.1.4</version>
  138. <scope>compile</scope>
  139. <optional>true</optional>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-autoconfigure-processor</artifactId>
  144. <version>2.7.5</version>
  145. <scope>compile</scope>
  146. <optional>true</optional>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-configuration-processor</artifactId>
  151. <version>2.7.5</version>
  152. <scope>compile</scope>
  153. <optional>true</optional>
  154. </dependency>
  155. </dependencies>
  156. </project>