pom.xml 943 B

123456789101112131415161718192021222324252627282930
  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. <parent>
  6. <artifactId>spring-cloud-aws</artifactId>
  7. <groupId>io.awspring.cloud</groupId>
  8. <version>3.2.0-SNAPSHOT</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>spring-cloud-aws-starter-sns</artifactId>
  13. <name>Spring Cloud AWS SNS Starter</name>
  14. <description>Spring Cloud AWS Simple Notification Service Starter</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>io.awspring.cloud</groupId>
  18. <artifactId>spring-cloud-aws-starter</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.awspring.cloud</groupId>
  22. <artifactId>spring-cloud-aws-sns</artifactId>
  23. </dependency>
  24. </dependencies>
  25. </project>