pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  3. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>io.awspring.cloud</groupId>
  7. <artifactId>spring-cloud-aws-samples-s3</artifactId>
  8. <version>3.0.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>spring-cloud-aws-samples-s3-infrastructure</artifactId>
  11. <name>Spring Cloud AWS S3 Sample Infrastructure</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <cdk.version>2.17.0</cdk.version>
  15. <constructs.version>[10.0.0,11.0.0)</constructs.version>
  16. </properties>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.codehaus.mojo</groupId>
  21. <artifactId>exec-maven-plugin</artifactId>
  22. <version>3.0.0</version>
  23. <configuration>
  24. <mainClass>io.awspring.cloud.s3.sample.infrastructure.InfrastructureApp</mainClass>
  25. </configuration>
  26. </plugin>
  27. </plugins>
  28. </build>
  29. <dependencies>
  30. <!-- AWS Cloud Development Kit -->
  31. <dependency>
  32. <groupId>software.amazon.awscdk</groupId>
  33. <artifactId>aws-cdk-lib</artifactId>
  34. <version>${cdk.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>software.constructs</groupId>
  38. <artifactId>constructs</artifactId>
  39. <version>${constructs.version}</version>
  40. </dependency>
  41. </dependencies>
  42. </project>