pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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</artifactId>
  8. <version>3.2.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>spring-cloud-aws-samples-infrastructure</artifactId>
  11. <name>Spring Cloud AWS Samples Infrastructure</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.codehaus.mojo</groupId>
  19. <artifactId>exec-maven-plugin</artifactId>
  20. <configuration>
  21. <mainClass>io.awspring.cloud.samples.infrastructure.InfrastructureApp</mainClass>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. <dependencies>
  27. <!-- AWS Cloud Development Kit -->
  28. <dependency>
  29. <groupId>software.amazon.awscdk</groupId>
  30. <artifactId>aws-cdk-lib</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>software.constructs</groupId>
  34. <artifactId>constructs</artifactId>
  35. </dependency>
  36. </dependencies>
  37. </project>