-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
35 lines (29 loc) · 1.28 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.learning.awspring</groupId>
<artifactId>aws-project-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>aws-projects</name>
<properties>
<maven.compiler.release>21</maven.compiler.release>
<sonar.organization>rajadilipkolli</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>
<modules>
<module>aws-cloudwatch-project</module>
<module>aws-dynamodb-project</module>
<module>aws-kinesis-project/consumer</module>
<module>aws-kinesis-project/producer</module>
<module>aws-lambda-project</module>
<module>aws-parameterstore-project</module>
<module>aws-s3-project</module>
<module>aws-secretmanager-project</module>
<module>aws-ses-project</module>
<module>aws-sns-project</module>
<module>aws-sqs-project</module>
</modules>
</project>