1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>io.awspring.cloud</groupId>
- <artifactId>spring-cloud-aws-samples-s3</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>spring-cloud-aws-samples-s3-infrastructure</artifactId>
- <name>Spring Cloud AWS S3 Sample Infrastructure</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <cdk.version>2.17.0</cdk.version>
- <constructs.version>[10.0.0,11.0.0)</constructs.version>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>3.0.0</version>
- <configuration>
- <mainClass>io.awspring.cloud.s3.sample.infrastructure.InfrastructureApp</mainClass>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!-- AWS Cloud Development Kit -->
- <dependency>
- <groupId>software.amazon.awscdk</groupId>
- <artifactId>aws-cdk-lib</artifactId>
- <version>${cdk.version}</version>
- </dependency>
- <dependency>
- <groupId>software.constructs</groupId>
- <artifactId>constructs</artifactId>
- <version>${constructs.version}</version>
- </dependency>
- </dependencies>
- </project>
|