1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"). 6 ~ You may not use this file except in compliance with the License. 7 ~ A copy of the License is located at 8 ~ 9 ~ http://aws.amazon.com/apache2.0 10 ~ 11 ~ or in the "license" file accompanying this file. This file is distributed 12 ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 13 ~ express or implied. See the License for the specific language governing 14 ~ permissions and limitations under the License. 15 --> 16 17<project xmlns="http://maven.apache.org/POM/4.0.0" 18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 20 <modelVersion>4.0.0</modelVersion> 21 <parent> 22 <groupId>software.amazon.awssdk</groupId> 23 <artifactId>aws-sdk-java-pom</artifactId> 24 <version>2.24.3</version> 25 </parent> 26 <artifactId>codegen-lite</artifactId> 27 <name>AWS Java SDK :: Code Generator Lite</name> 28 <description>The AWS SDK for Java - Code Generator Lite module holds the classes and templates required to generate the 29 source files for the core SDK. 30 </description> 31 <url>https://aws.amazon.com/sdkforjava</url> 32 33 <properties> 34 <jre.version>1.8</jre.version> 35 </properties> 36 37 <dependencyManagement> 38 <dependencies> 39 <dependency> 40 <groupId>software.amazon.awssdk</groupId> 41 <artifactId>bom-internal</artifactId> 42 <version>${project.version}</version> 43 <type>pom</type> 44 <scope>import</scope> 45 </dependency> 46 </dependencies> 47 </dependencyManagement> 48 49 <dependencies> 50 <dependency> 51 <groupId>software.amazon.awssdk</groupId> 52 <artifactId>annotations</artifactId> 53 <version>${awsjavasdk.version}</version> 54 </dependency> 55 <dependency> 56 <groupId>software.amazon.awssdk</groupId> 57 <artifactId>utils</artifactId> 58 <version>${awsjavasdk.version}</version> 59 </dependency> 60 <dependency> 61 <groupId>software.amazon.awssdk</groupId> 62 <artifactId>json-utils</artifactId> 63 <version>${awsjavasdk.version}</version> 64 </dependency> 65 <dependency> 66 <groupId>com.squareup</groupId> 67 <artifactId>javapoet</artifactId> 68 </dependency> 69 <dependency> 70 <groupId>com.fasterxml.jackson.core</groupId> 71 <artifactId>jackson-annotations</artifactId> 72 </dependency> 73 <dependency> 74 <groupId>com.fasterxml.jackson.jr</groupId> 75 <artifactId>jackson-jr-objects</artifactId> 76 </dependency> 77 <dependency> 78 <artifactId>org.eclipse.jdt.core</artifactId> 79 <groupId>org.eclipse.jdt</groupId> 80 </dependency> 81 <dependency> 82 <artifactId>org.eclipse.text</artifactId> 83 <groupId>org.eclipse.text</groupId> 84 </dependency> 85 86 <dependency> 87 <groupId>org.hamcrest</groupId> 88 <artifactId>hamcrest-all</artifactId> 89 <scope>test</scope> 90 </dependency> 91 <dependency> 92 <groupId>org.assertj</groupId> 93 <artifactId>assertj-core</artifactId> 94 <scope>test</scope> 95 </dependency> 96 <dependency> 97 <groupId>org.mockito</groupId> 98 <artifactId>mockito-core</artifactId> 99 <scope>test</scope> 100 </dependency> 101 <dependency> 102 <groupId>org.junit.jupiter</groupId> 103 <artifactId>junit-jupiter</artifactId> 104 <scope>test</scope> 105 </dependency> 106 <dependency> 107 <groupId>org.junit.vintage</groupId> 108 <artifactId>junit-vintage-engine</artifactId> 109 <scope>test</scope> 110 </dependency> 111 </dependencies> 112 113 114</project> 115