pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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</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-samples</artifactId>
  12. <name>Spring Cloud AWS Samples</name>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>infrastructure</module>
  16. <module>spring-cloud-aws-dynamodb-sample</module>
  17. <module>spring-cloud-aws-parameter-store-sample</module>
  18. <module>spring-cloud-aws-s3-sample</module>
  19. <module>spring-cloud-aws-secrets-manager-sample</module>
  20. <module>spring-cloud-aws-ses-sample</module>
  21. <module>spring-cloud-aws-sns-sample</module>
  22. <module>spring-cloud-aws-sqs-sample</module>
  23. </modules>
  24. <properties>
  25. <cdk.version>2.17.0</cdk.version>
  26. <constructs.version>[10.0.0,11.0.0)</constructs.version>
  27. </properties>
  28. <build>
  29. <pluginManagement>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.codehaus.mojo</groupId>
  33. <artifactId>exec-maven-plugin</artifactId>
  34. <version>3.0.0</version>
  35. </plugin>
  36. </plugins>
  37. </pluginManagement>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-deploy-plugin</artifactId>
  42. <version>2.7</version>
  43. <configuration>
  44. <skip>true</skip>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. <dependencyManagement>
  50. <dependencies>
  51. <!-- AWS Cloud Development Kit -->
  52. <dependency>
  53. <groupId>software.amazon.awscdk</groupId>
  54. <artifactId>aws-cdk-lib</artifactId>
  55. <version>${cdk.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>software.constructs</groupId>
  59. <artifactId>constructs</artifactId>
  60. <version>${constructs.version}</version>
  61. </dependency>
  62. </dependencies>
  63. </dependencyManagement>
  64. </project>