|
| 1 | +<?xml version="1.0"?> |
| 2 | +<!-- |
| 3 | + ~ Copyright 2010-2019 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 18 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 19 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 20 | + <modelVersion>4.0.0</modelVersion> |
| 21 | + <parent> |
| 22 | + <groupId>software.amazon.awssdk</groupId> |
| 23 | + <artifactId>aws-sdk-java-pom</artifactId> |
| 24 | + <version>2.20.104-SNAPSHOT</version> |
| 25 | + <relativePath>../../pom.xml</relativePath> |
| 26 | + </parent> |
| 27 | + <artifactId>iam-policy-builder</artifactId> |
| 28 | + <version>${awsjavasdk.version}</version> |
| 29 | + <name>AWS Java SDK :: IAM :: Policy Builder</name> |
| 30 | + <description> |
| 31 | + Library simplifying the building, marshalling and unmarshalling of IAM Policies. |
| 32 | + </description> |
| 33 | + <url>https://aws.amazon.com/sdkforjava</url> |
| 34 | + |
| 35 | + <properties> |
| 36 | + <jre.version>1.8</jre.version> |
| 37 | + <awsjavasdk.version>${project.parent.version}</awsjavasdk.version> |
| 38 | + </properties> |
| 39 | + |
| 40 | + <dependencyManagement> |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>software.amazon.awssdk</groupId> |
| 44 | + <artifactId>bom-internal</artifactId> |
| 45 | + <version>${awsjavasdk.version}</version> |
| 46 | + <type>pom</type> |
| 47 | + <scope>import</scope> |
| 48 | + </dependency> |
| 49 | + </dependencies> |
| 50 | + </dependencyManagement> |
| 51 | + |
| 52 | + <dependencies> |
| 53 | + <dependency> |
| 54 | + <groupId>software.amazon.awssdk</groupId> |
| 55 | + <artifactId>utils</artifactId> |
| 56 | + <version>${awsjavasdk.version}</version> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>software.amazon.awssdk</groupId> |
| 60 | + <artifactId>annotations</artifactId> |
| 61 | + <version>${awsjavasdk.version}</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>software.amazon.awssdk</groupId> |
| 65 | + <artifactId>json-utils</artifactId> |
| 66 | + <version>${awsjavasdk.version}</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>software.amazon.awssdk</groupId> |
| 70 | + <artifactId>third-party-jackson-core</artifactId> |
| 71 | + <version>${awsjavasdk.version}</version> |
| 72 | + </dependency> |
| 73 | + |
| 74 | + |
| 75 | + <dependency> |
| 76 | + <groupId>org.junit.jupiter</groupId> |
| 77 | + <artifactId>junit-jupiter</artifactId> |
| 78 | + <scope>test</scope> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.junit.jupiter</groupId> |
| 82 | + <artifactId>junit-jupiter-engine</artifactId> |
| 83 | + <version>${junit5.version}</version> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>org.assertj</groupId> |
| 88 | + <artifactId>assertj-core</artifactId> |
| 89 | + <scope>test</scope> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>org.mockito</groupId> |
| 93 | + <artifactId>mockito-core</artifactId> |
| 94 | + <scope>test</scope> |
| 95 | + </dependency> |
| 96 | + <dependency> |
| 97 | + <groupId>org.apache.logging.log4j</groupId> |
| 98 | + <artifactId>log4j-api</artifactId> |
| 99 | + <scope>test</scope> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>org.apache.logging.log4j</groupId> |
| 103 | + <artifactId>log4j-core</artifactId> |
| 104 | + <scope>test</scope> |
| 105 | + </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>org.apache.logging.log4j</groupId> |
| 108 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>nl.jqno.equalsverifier</groupId> |
| 113 | + <artifactId>equalsverifier</artifactId> |
| 114 | + <scope>test</scope> |
| 115 | + </dependency> |
| 116 | + </dependencies> |
| 117 | + |
| 118 | + <build> |
| 119 | + <plugins> |
| 120 | + <plugin> |
| 121 | + <groupId>org.apache.maven.plugins</groupId> |
| 122 | + <artifactId>maven-jar-plugin</artifactId> |
| 123 | + <configuration> |
| 124 | + <archive> |
| 125 | + <manifestEntries> |
| 126 | + <Automatic-Module-Name>software.amazon.awssdk.policybuilder.iam</Automatic-Module-Name> |
| 127 | + </manifestEntries> |
| 128 | + </archive> |
| 129 | + </configuration> |
| 130 | + </plugin> |
| 131 | + </plugins> |
| 132 | + </build> |
| 133 | + |
| 134 | +</project> |
0 commit comments