c62680becb
* Deep and Shallow copy - code snippets * removed maven files * Ignore mvn files * Removed application test file * Removed .gitIgnore, additional review comments incorporated. * Incorporate review comments * incorporated review comments * https://jira.baeldung.com/browse/BAEL-6827 - Initial Commit * BAEL-6827 - Unit tests * BAEL-6827 - Tests * BAEL-6827 - Minor issue fixes * Removed deep shalow copy project * BAEL-6827 - BDD naming convention * BAEL-6827 - Test classes end with *UnitTest,.java * BAEL-6827 - Move the code to AWS modules * BAEL-6827 - Post Construct annotation issue fix * BAEL-6827 - Updated aws-java-sdk version * Added s3 update object module to parent pom * https://jira.baeldung.com/browse/BAEL-6827 - Unit test failure fixes
30 lines
1001 B
XML
30 lines
1001 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
<artifactId>aws-modules</artifactId>
|
|
<name>aws-modules</name>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>aws-app-sync</module>
|
|
<module>aws-lambda-modules</module>
|
|
<module>aws-miscellaneous</module>
|
|
<module>aws-reactive</module>
|
|
<module>aws-s3</module>
|
|
<module>aws-s3-update-object</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<aws-java-sdk.version>1.12.331</aws-java-sdk.version>
|
|
<maven-shade-plugin.version>3.0.0</maven-shade-plugin.version>
|
|
</properties>
|
|
|
|
</project> |