| <?xml version="1.0"?> |
| <!-- |
| ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"). |
| ~ You may not use this file except in compliance with the License. |
| ~ A copy of the License is located at |
| ~ |
| ~ http://aws.amazon.com/apache2.0 |
| ~ |
| ~ or in the "license" file accompanying this file. This file is distributed |
| ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
| ~ express or implied. See the License for the specific language governing |
| ~ permissions and limitations under the License. |
| --> |
| |
| <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> |
| <parent> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>services-custom</artifactId> |
| <version>2.24.3</version> |
| </parent> |
| <artifactId>dynamodb-enhanced</artifactId> |
| <name>AWS Java SDK :: DynamoDB :: Enhanced Client</name> |
| <url>https://aws.amazon.com/sdkforjava</url> |
| |
| <properties> |
| <awsjavasdk.version>${project.parent.version}</awsjavasdk.version> |
| <jre.version>1.8</jre.version> |
| </properties> |
| |
| <!-- Additional configuration required to enable DynamoDb-Local to work in tests --> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>copy</id> |
| <phase>test-compile</phase> |
| <goals> |
| <goal>copy-dependencies</goal> |
| </goals> |
| <configuration> |
| <includeScope>test</includeScope> |
| <includeTypes>so,dll,dylib</includeTypes> |
| <outputDirectory>${project.build.directory}/native-libs</outputDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| <configuration> |
| <ignoredUsedUndeclaredDependencies> |
| <ignoredUsedUndeclaredDependency>com.fasterxml.jackson.core:*</ignoredUsedUndeclaredDependency> |
| <ignoredUsedUndeclaredDependency>org.reactivestreams:reactive-streams</ignoredUsedUndeclaredDependency> |
| <!--Ignore used undeclared test dependencies --> |
| <ignoredUsedUndeclaredDependency>software.amazon.awssdk:dynamodb-enhanced</ignoredUsedUndeclaredDependency> |
| <ignoredUsedUndeclaredDependency>org.hamcrest:*</ignoredUsedUndeclaredDependency> |
| <ignoredUsedUndeclaredDependency>org.junit.jupiter:*</ignoredUsedUndeclaredDependency> |
| <ignoredUsedUndeclaredDependency>org.junit.vintage:*</ignoredUsedUndeclaredDependency> |
| <ignoredUsedUndeclaredDependency>junit:junit::*</ignoredUsedUndeclaredDependency> |
| </ignoredUsedUndeclaredDependencies> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <configuration> |
| <archive> |
| <manifestEntries> |
| <Automatic-Module-Name>software.amazon.awssdk.enhanced.dynamodb</Automatic-Module-Name> |
| </manifestEntries> |
| </archive> |
| </configuration> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <systemPropertyVariables> |
| <sqlite4java.library.path>${project.build.directory}/native-libs</sqlite4java.library.path> |
| </systemPropertyVariables> |
| <environmentVariables> |
| <DDB_LOCAL_TELEMETRY>0</DDB_LOCAL_TELEMETRY> |
| </environmentVariables> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>aws-core</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>json-utils</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>http-client-spi</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>sdk-core</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>auth</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>regions</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>dynamodb</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>annotations</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>utils</artifactId> |
| <version>${awsjavasdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>software.amazon.awssdk</groupId> |
| <artifactId>service-test-utils</artifactId> |
| <version>${awsjavasdk.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.vintage</groupId> |
| <artifactId>junit-vintage-engine</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest-all</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.assertj</groupId> |
| <artifactId>assertj-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>${mockito.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.github.tomakehurst</groupId> |
| <artifactId>wiremock-jre8</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>nl.jqno.equalsverifier</groupId> |
| <artifactId>equalsverifier</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>net.bytebuddy</groupId> |
| <artifactId>byte-buddy</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.amazonaws</groupId> |
| <artifactId>DynamoDBLocal</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.almworks.sqlite4java</groupId> |
| <artifactId>sqlite4java</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.almworks.sqlite4java</groupId> |
| <artifactId>sqlite4java-win32-x86</artifactId> |
| <type>dll</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.almworks.sqlite4java</groupId> |
| <artifactId>sqlite4java-win32-x64</artifactId> |
| <type>dll</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.almworks.sqlite4java</groupId> |
| <artifactId>libsqlite4java-osx</artifactId> |
| <type>dylib</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.almworks.sqlite4java</groupId> |
| <artifactId>libsqlite4java-linux-i386</artifactId> |
| <type>so</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.almworks.sqlite4java</groupId> |
| <artifactId>libsqlite4java-linux-amd64</artifactId> |
| <type>so</type> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |