123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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</artifactId>
- <version>3.2.0-SNAPSHOT</version>
- </parent>
- <artifactId>spring-cloud-aws-samples-infrastructure</artifactId>
- <name>Spring Cloud AWS Samples Infrastructure</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <configuration>
- <mainClass>io.awspring.cloud.samples.infrastructure.InfrastructureApp</mainClass>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!-- AWS Cloud Development Kit -->
- <dependency>
- <groupId>software.amazon.awscdk</groupId>
- <artifactId>aws-cdk-lib</artifactId>
- </dependency>
- <dependency>
- <groupId>software.constructs</groupId>
- <artifactId>constructs</artifactId>
- </dependency>
- </dependencies>
- </project>
|