pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2013-2019 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. ~ https://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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  18. xmlns="http://maven.apache.org/POM/4.0.0"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <parent>
  21. <groupId>io.awspring.cloud</groupId>
  22. <artifactId>spring-cloud-aws</artifactId>
  23. <version>2.3.0-RC2</version>
  24. </parent>
  25. <modelVersion>4.0.0</modelVersion>
  26. <artifactId>spring-cloud-aws-autoconfigure</artifactId>
  27. <name>Spring Cloud AWS Autoconfigure</name>
  28. <dependencies>
  29. <dependency>
  30. <groupId>io.awspring.cloud</groupId>
  31. <artifactId>spring-cloud-aws-context</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.awspring.cloud</groupId>
  35. <artifactId>spring-cloud-aws-messaging</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.awspring.cloud</groupId>
  40. <artifactId>spring-cloud-aws-jdbc</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.awspring.cloud</groupId>
  45. <artifactId>spring-cloud-aws-parameter-store-config</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.awspring.cloud</groupId>
  50. <artifactId>spring-cloud-aws-ses</artifactId>
  51. <optional>true</optional>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.awspring.cloud</groupId>
  55. <artifactId>spring-cloud-aws-appconfig</artifactId>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-autoconfigure</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-actuator-autoconfigure</artifactId>
  65. <optional>true</optional>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.security</groupId>
  69. <artifactId>spring-security-config</artifactId>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.security</groupId>
  74. <artifactId>spring-security-oauth2-jose</artifactId>
  75. <optional>true</optional>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.security</groupId>
  79. <artifactId>spring-security-oauth2-resource-server</artifactId>
  80. <optional>true</optional>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.micrometer</groupId>
  84. <artifactId>micrometer-registry-cloudwatch</artifactId>
  85. <optional>true</optional>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-context-support</artifactId>
  90. <optional>true</optional>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>spring-web</artifactId>
  95. <optional>true</optional>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework</groupId>
  99. <artifactId>spring-webmvc</artifactId>
  100. <optional>true</optional>
  101. </dependency>
  102. <dependency>
  103. <groupId>javax.servlet</groupId>
  104. <artifactId>javax.servlet-api</artifactId>
  105. <scope>provided</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.amazonaws</groupId>
  109. <artifactId>aws-java-sdk-ses</artifactId>
  110. <optional>true</optional>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.amazonaws</groupId>
  114. <artifactId>aws-java-sdk-cloudformation</artifactId>
  115. <optional>true</optional>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.amazonaws</groupId>
  119. <artifactId>aws-java-sdk-cloudwatch</artifactId>
  120. <optional>true</optional>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.thimbleware.jmemcached</groupId>
  124. <artifactId>jmemcached-core</artifactId>
  125. <scope>test</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>javax.mail</groupId>
  129. <artifactId>javax.mail-api</artifactId>
  130. <optional>true</optional>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.amazonaws</groupId>
  134. <artifactId>elasticache-java-cluster-client</artifactId>
  135. <optional>true</optional>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.amazonaws</groupId>
  139. <artifactId>aws-java-sdk-elasticache</artifactId>
  140. <optional>true</optional>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.springframework.data</groupId>
  144. <artifactId>spring-data-redis</artifactId>
  145. <optional>true</optional>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-autoconfigure-processor</artifactId>
  150. <optional>true</optional>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-configuration-processor</artifactId>
  155. <optional>true</optional>
  156. </dependency>
  157. <dependency>
  158. <groupId>mysql</groupId>
  159. <artifactId>mysql-connector-java</artifactId>
  160. <scope>test</scope>
  161. </dependency>
  162. </dependencies>
  163. </project>