pom.xml 1002 B

123456789101112131415161718192021222324252627282930313233
  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-samples</artifactId>
  7. <groupId>io.awspring.cloud</groupId>
  8. <version>3.2.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>spring-cloud-aws-dynamodb-sample</artifactId>
  12. <name>Spring Cloud AWS DynamoDb Sample</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>io.awspring.cloud</groupId>
  20. <artifactId>spring-cloud-aws-starter-dynamodb</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>io.awspring.cloud</groupId>
  24. <artifactId>spring-cloud-aws-testcontainers</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. </dependencies>
  28. </project>