| <?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> |
|
|
| <groupId>com.myorg</groupId> |
| <artifactId>rds-mysql</artifactId> |
| <version>0.1</version> |
|
|
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <cdk.version>2.93.0</cdk.version> |
| <constructs.version>[10.0.0,11.0.0)</constructs.version> |
| <junit.version>5.7.1</junit.version> |
| </properties> |
|
|
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.8.1</version> |
| <configuration> |
| <source>1.8</source> |
| <target>1.8</target> |
| </configuration> |
| </plugin> |
|
|
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>exec-maven-plugin</artifactId> |
| <version>3.0.0</version> |
| <configuration> |
| <mainClass>com.myorg.RdsMysqlApp</mainClass> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
|
|
| <dependencies> |
| |
| <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> |
|
|
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter</artifactId> |
| <version>${junit.version}</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |
|
|