|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>software.amazon.s3.accessgrants</groupId> |
| 5 | + <artifactId>aws-s3-accessgrants-java-plugin</artifactId> |
| 6 | + <name>${project.groupId}:${project.artifactId}</name> |
| 7 | + <version>2.3.0</version> |
| 8 | + <description>The Amazon Web Services Plugin for S3 Access Grants. The plugin allows customers to integrate S3 Access grants as an additional permission layer on top of S3 calls.</description> |
| 9 | + <url>https://github.com/aws/aws-s3-accessgrants-plugin-java-v2</url> |
| 10 | + <developers> |
| 11 | + <developer> |
| 12 | + <id>amazonwebservices</id> |
| 13 | + <organization>Amazon Web Services</organization> |
| 14 | + <organizationUrl>https://aws.amazon.com</organizationUrl> |
| 15 | + <roles> |
| 16 | + <role>developer</role> |
| 17 | + </roles> |
| 18 | + </developer> |
| 19 | + </developers> |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>Apache License, Version 2.0</name> |
| 23 | + <url>https://aws.amazon.com/apache2.0</url> |
| 24 | + <distribution>repo</distribution> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + <scm> |
| 28 | + <connection>scm:git:git://github.com/aws/aws-s3-accessgrants-plugin-java-v2.git</connection> |
| 29 | + <url>https://github.com/aws/aws-s3-accessgrants-plugin-java-v2.git</url> |
| 30 | + </scm> |
| 31 | + <build> |
| 32 | + <plugins> |
| 33 | + <plugin> |
| 34 | + <artifactId>maven-shade-plugin</artifactId> |
| 35 | + <version>3.5.1</version> |
| 36 | + <executions> |
| 37 | + <execution> |
| 38 | + <goals> |
| 39 | + <goal>shade</goal> |
| 40 | + </goals> |
| 41 | + <configuration> |
| 42 | + <artifactSet> |
| 43 | + <includes> |
| 44 | + <include>software.amazon.awssdk.s3accessgrants:*</include> |
| 45 | + <include>com.github.ben-manes.caffeine:*</include> |
| 46 | + <include>com.google:*</include> |
| 47 | + </includes> |
| 48 | + </artifactSet> |
| 49 | + </configuration> |
| 50 | + </execution> |
| 51 | + </executions> |
| 52 | + </plugin> |
| 53 | + <plugin> |
| 54 | + <artifactId>maven-jar-plugin</artifactId> |
| 55 | + <version>3.3.0</version> |
| 56 | + <configuration> |
| 57 | + <excludes> |
| 58 | + <exclude>log4j2.properties</exclude> |
| 59 | + </excludes> |
| 60 | + </configuration> |
| 61 | + </plugin> |
| 62 | + </plugins> |
| 63 | + </build> |
| 64 | + <profiles> |
| 65 | + <profile> |
| 66 | + <id>release</id> |
| 67 | + <build> |
| 68 | + <plugins> |
| 69 | + <plugin> |
| 70 | + <groupId>org.sonatype.plugins</groupId> |
| 71 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 72 | + <version>1.6.13</version> |
| 73 | + <extensions>true</extensions> |
| 74 | + <configuration> |
| 75 | + <serverId>ossrh</serverId> |
| 76 | + <nexusUrl>https://aws.oss.sonatype.org/</nexusUrl> |
| 77 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 78 | + </configuration> |
| 79 | + </plugin> |
| 80 | + <plugin> |
| 81 | + <artifactId>maven-gpg-plugin</artifactId> |
| 82 | + <version>3.1.0</version> |
| 83 | + <executions> |
| 84 | + <execution> |
| 85 | + <id>sign-artifacts</id> |
| 86 | + <phase>verify</phase> |
| 87 | + <goals> |
| 88 | + <goal>sign</goal> |
| 89 | + </goals> |
| 90 | + <configuration> |
| 91 | + <keyname>s3-user-security</keyname> |
| 92 | + <passphraseServerId>s3-user-security</passphraseServerId> |
| 93 | + </configuration> |
| 94 | + </execution> |
| 95 | + </executions> |
| 96 | + </plugin> |
| 97 | + <plugin> |
| 98 | + <artifactId>maven-source-plugin</artifactId> |
| 99 | + <version>2.2.1</version> |
| 100 | + <executions> |
| 101 | + <execution> |
| 102 | + <id>attach-sources</id> |
| 103 | + <goals> |
| 104 | + <goal>jar-no-fork</goal> |
| 105 | + </goals> |
| 106 | + </execution> |
| 107 | + </executions> |
| 108 | + </plugin> |
| 109 | + <plugin> |
| 110 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 111 | + <version>2.9.1</version> |
| 112 | + <executions> |
| 113 | + <execution> |
| 114 | + <id>attach-javadocs</id> |
| 115 | + <goals> |
| 116 | + <goal>jar</goal> |
| 117 | + </goals> |
| 118 | + </execution> |
| 119 | + </executions> |
| 120 | + </plugin> |
| 121 | + <plugin> |
| 122 | + <artifactId>maven-shade-plugin</artifactId> |
| 123 | + <version>3.5.1</version> |
| 124 | + <executions> |
| 125 | + <execution> |
| 126 | + <phase>package</phase> |
| 127 | + <goals> |
| 128 | + <goal>shade</goal> |
| 129 | + </goals> |
| 130 | + <configuration> |
| 131 | + <artifactSet> |
| 132 | + <includes> |
| 133 | + <include>software.amazon.s3.accessgrants:*</include> |
| 134 | + </includes> |
| 135 | + </artifactSet> |
| 136 | + </configuration> |
| 137 | + </execution> |
| 138 | + </executions> |
| 139 | + </plugin> |
| 140 | + <plugin> |
| 141 | + <artifactId>maven-shade-plugin</artifactId> |
| 142 | + <version>3.5.1</version> |
| 143 | + <executions> |
| 144 | + <execution> |
| 145 | + <phase>package</phase> |
| 146 | + <goals> |
| 147 | + <goal>shade</goal> |
| 148 | + </goals> |
| 149 | + <configuration> |
| 150 | + <artifactSet> |
| 151 | + <includes> |
| 152 | + <include>software.amazon.awssdk.s3accessgrants:*</include> |
| 153 | + </includes> |
| 154 | + </artifactSet> |
| 155 | + </configuration> |
| 156 | + </execution> |
| 157 | + </executions> |
| 158 | + </plugin> |
| 159 | + <plugin> |
| 160 | + <artifactId>maven-jar-plugin</artifactId> |
| 161 | + <version>3.3.0</version> |
| 162 | + <configuration> |
| 163 | + <excludes> |
| 164 | + <exclude>log4j2.properties</exclude> |
| 165 | + </excludes> |
| 166 | + </configuration> |
| 167 | + </plugin> |
| 168 | + </plugins> |
| 169 | + </build> |
| 170 | + </profile> |
| 171 | + </profiles> |
| 172 | + <dependencies> |
| 173 | + <dependency> |
| 174 | + <groupId>software.amazon.awssdk</groupId> |
| 175 | + <artifactId>s3</artifactId> |
| 176 | + <version>2.25.67</version> |
| 177 | + <scope>compile</scope> |
| 178 | + </dependency> |
| 179 | + <dependency> |
| 180 | + <groupId>software.amazon.awssdk</groupId> |
| 181 | + <artifactId>http-auth-spi</artifactId> |
| 182 | + <version>2.25.67</version> |
| 183 | + <scope>compile</scope> |
| 184 | + </dependency> |
| 185 | + <dependency> |
| 186 | + <groupId>software.amazon.awssdk</groupId> |
| 187 | + <artifactId>identity-spi</artifactId> |
| 188 | + <version>2.25.67</version> |
| 189 | + <scope>compile</scope> |
| 190 | + </dependency> |
| 191 | + <dependency> |
| 192 | + <groupId>org.mockito</groupId> |
| 193 | + <artifactId>mockito-core</artifactId> |
| 194 | + <version>4.3.1</version> |
| 195 | + <scope>test</scope> |
| 196 | + <exclusions> |
| 197 | + <exclusion> |
| 198 | + <artifactId>byte-buddy</artifactId> |
| 199 | + <groupId>net.bytebuddy</groupId> |
| 200 | + </exclusion> |
| 201 | + <exclusion> |
| 202 | + <artifactId>byte-buddy-agent</artifactId> |
| 203 | + <groupId>net.bytebuddy</groupId> |
| 204 | + </exclusion> |
| 205 | + <exclusion> |
| 206 | + <artifactId>objenesis</artifactId> |
| 207 | + <groupId>org.objenesis</groupId> |
| 208 | + </exclusion> |
| 209 | + </exclusions> |
| 210 | + </dependency> |
| 211 | + <dependency> |
| 212 | + <groupId>org.mockito</groupId> |
| 213 | + <artifactId>mockito-inline</artifactId> |
| 214 | + <version>2.13.0</version> |
| 215 | + <scope>test</scope> |
| 216 | + </dependency> |
| 217 | + <dependency> |
| 218 | + <groupId>junit</groupId> |
| 219 | + <artifactId>junit</artifactId> |
| 220 | + <version>4.13.2</version> |
| 221 | + <scope>test</scope> |
| 222 | + <exclusions> |
| 223 | + <exclusion> |
| 224 | + <artifactId>hamcrest-core</artifactId> |
| 225 | + <groupId>org.hamcrest</groupId> |
| 226 | + </exclusion> |
| 227 | + </exclusions> |
| 228 | + </dependency> |
| 229 | + <dependency> |
| 230 | + <groupId>org.apache.logging.log4j</groupId> |
| 231 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 232 | + <version>2.20.0</version> |
| 233 | + <scope>compile</scope> |
| 234 | + </dependency> |
| 235 | + <dependency> |
| 236 | + <groupId>org.assertj</groupId> |
| 237 | + <artifactId>assertj-core</artifactId> |
| 238 | + <version>3.20.2</version> |
| 239 | + <scope>test</scope> |
| 240 | + </dependency> |
| 241 | + <dependency> |
| 242 | + <groupId>software.amazon.awssdk</groupId> |
| 243 | + <artifactId>s3control</artifactId> |
| 244 | + <version>2.25.67</version> |
| 245 | + <scope>compile</scope> |
| 246 | + </dependency> |
| 247 | + <dependency> |
| 248 | + <groupId>software.amazon.awssdk</groupId> |
| 249 | + <artifactId>iam</artifactId> |
| 250 | + <version>2.25.67</version> |
| 251 | + <scope>compile</scope> |
| 252 | + </dependency> |
| 253 | + <dependency> |
| 254 | + <groupId>software.amazon.awssdk</groupId> |
| 255 | + <artifactId>sts</artifactId> |
| 256 | + <version>2.25.67</version> |
| 257 | + <scope>compile</scope> |
| 258 | + </dependency> |
| 259 | + <dependency> |
| 260 | + <groupId>software.amazon.awssdk</groupId> |
| 261 | + <artifactId>cloudwatch-metric-publisher</artifactId> |
| 262 | + <version>2.25.67</version> |
| 263 | + <scope>compile</scope> |
| 264 | + </dependency> |
| 265 | + </dependencies> |
| 266 | + <distributionManagement> |
| 267 | + <snapshotRepository> |
| 268 | + <id>ossrh</id> |
| 269 | + <url>https://aws.oss.sonatype.org/content/repositories/snapshots/</url> |
| 270 | + </snapshotRepository> |
| 271 | + </distributionManagement> |
| 272 | + <properties> |
| 273 | + <sdk.version>2.25.67</sdk.version> |
| 274 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 275 | + <maven.compiler.source>8</maven.compiler.source> |
| 276 | + <maven.compiler.target>8</maven.compiler.target> |
| 277 | + </properties> |
| 278 | +</project> |
0 commit comments