|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" |
3 |
| - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<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/xsd/maven-4.0.0.xsd"> |
5 | 2 | <modelVersion>4.0.0</modelVersion>
|
6 |
| - |
7 | 3 | <groupId>com.amazonaws</groupId>
|
8 | 4 | <artifactId>amazon-sqs-java-messaging-lib</artifactId>
|
9 |
| - <version>1.1.0</version> |
10 |
| - <packaging>jar</packaging> |
| 5 | + <version>2.0.0</version> |
11 | 6 | <name>Amazon SQS Java Messaging Library</name>
|
12 | 7 | <description>The Amazon SQS Java Messaging Library holds the Java Message Service compatible classes, that are used
|
13 | 8 | for communicating with Amazon Simple Queue Service.
|
14 | 9 | </description>
|
15 |
| - <url>https://github.com/awslabs/amazon-sqs-java-messaging-lib/</url> |
16 |
| - |
| 10 | + <url>https://github.com/awslabs/amazon-sqs-java-messaging-lib</url> |
17 | 11 | <scm>
|
18 | 12 | <url>https://github.com/awslabs/amazon-sqs-java-messaging-lib.git</url>
|
19 | 13 | </scm>
|
20 |
| - |
21 | 14 | <licenses>
|
22 | 15 | <license>
|
23 | 16 | <name>Apache License, Version 2.0</name>
|
24 | 17 | <url>https://aws.amazon.com/apache2.0</url>
|
25 | 18 | <distribution>repo</distribution>
|
26 | 19 | </license>
|
27 | 20 | </licenses>
|
28 |
| - |
29 | 21 | <developers>
|
30 | 22 | <developer>
|
31 | 23 | <id>amazonwebservices</id>
|
|
36 | 28 | </roles>
|
37 | 29 | </developer>
|
38 | 30 | </developers>
|
39 |
| - |
40 | 31 | <properties>
|
41 |
| - <aws-java-sdk.version>2.10.86</aws-java-sdk.version> |
| 32 | + <aws-java-sdk.version>2.17.208</aws-java-sdk.version> |
| 33 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
42 | 34 | </properties>
|
43 | 35 |
|
44 | 36 | <dependencyManagement>
|
|
78 | 70 | <artifactId>geronimo-jms_1.1_spec</artifactId>
|
79 | 71 | <version>1.1.1</version>
|
80 | 72 | </dependency>
|
81 |
| - |
| 73 | + <dependency> |
| 74 | + <groupId>org.junit.jupiter</groupId> |
| 75 | + <artifactId>junit-jupiter-engine</artifactId> |
| 76 | + <version>5.7.0-M1</version> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
82 | 79 | <dependency>
|
83 | 80 | <groupId>junit</groupId>
|
84 | 81 | <artifactId>junit</artifactId>
|
|
106 | 103 | <encoding>UTF-8</encoding>
|
107 | 104 | </configuration>
|
108 | 105 | </plugin>
|
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 109 | + <version>3.0.0-M1</version> |
| 110 | + <executions> |
| 111 | + <execution> |
| 112 | + <goals> |
| 113 | + <goal>integration-test</goal> |
| 114 | + <goal>verify</goal> |
| 115 | + </goals> |
| 116 | + </execution> |
| 117 | + </executions> |
| 118 | + </plugin> |
109 | 119 | </plugins>
|
110 | 120 | </pluginManagement>
|
111 | 121 | <plugins>
|
|
132 | 142 | <goals>
|
133 | 143 | <goal>jar</goal>
|
134 | 144 | </goals>
|
135 |
| - <configuration> |
136 |
| - <!-- |
| 145 | + <configuration> |
| 146 | + <!-- |
137 | 147 | TODO-RS: Java 8 is more strict about some javadoc tags.
|
138 |
| - We'll need to update quite a few to remove this workaround. |
| 148 | + We'll need to update quite a few to remove this workaround. |
139 | 149 | -->
|
140 | 150 | <additionalparam>-Xdoclint:none</additionalparam>
|
141 | 151 | </configuration>
|
|
148 | 158 | <version>1.6.7</version>
|
149 | 159 | <extensions>true</extensions>
|
150 | 160 | <configuration>
|
151 |
| - <serverId>ossrh</serverId> |
152 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
153 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 161 | + <serverId>ossrh</serverId> |
| 162 | + <nexusUrl>https://aws.oss.sonatype.org</nexusUrl> |
| 163 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
154 | 164 | </configuration>
|
155 | 165 | </plugin>
|
156 |
| - <plugin> |
157 |
| - <groupId>org.apache.maven.plugins</groupId> |
158 |
| - <artifactId>maven-gpg-plugin</artifactId> |
159 |
| - <executions> |
160 |
| - <execution> |
161 |
| - <id>sign-artifacts</id> |
162 |
| - <phase>verify</phase> |
163 |
| - <goals> |
164 |
| - <goal>sign</goal> |
165 |
| - </goals> |
166 |
| - <configuration> |
167 |
| - <keyname>${gpg.sqs.keyname}</keyname> |
168 |
| - <passphraseServerId>gpg.sqs.passphrase</passphraseServerId> |
169 |
| - <skip>true</skip> |
170 |
| - </configuration> |
171 |
| - </execution> |
172 |
| - </executions> |
173 |
| - </plugin> |
174 | 166 | </plugins>
|
175 | 167 | </build>
|
176 |
| - |
177 |
| - <distributionManagement> |
178 |
| - <snapshotRepository> |
179 |
| - <id>ossrh</id> |
180 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
181 |
| - </snapshotRepository> |
182 |
| - <repository> |
183 |
| - <id>ossrh</id> |
184 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
185 |
| - </repository> |
186 |
| - </distributionManagement> |
| 168 | + |
| 169 | + <profiles> |
| 170 | + <profile> |
| 171 | + <id>publishing</id> |
| 172 | + |
| 173 | + <distributionManagement> |
| 174 | + <snapshotRepository> |
| 175 | + <id>ossrh</id> |
| 176 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 177 | + </snapshotRepository> |
| 178 | + <repository> |
| 179 | + <id>ossrh</id> |
| 180 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 181 | + </repository> |
| 182 | + </distributionManagement> |
| 183 | + |
| 184 | + <build> |
| 185 | + <plugins> |
| 186 | + <plugin> |
| 187 | + <groupId>org.apache.maven.plugins</groupId> |
| 188 | + <artifactId>maven-gpg-plugin</artifactId> |
| 189 | + <version>1.6</version> |
| 190 | + <executions> |
| 191 | + <execution> |
| 192 | + <id>sign-artifacts</id> |
| 193 | + <phase>verify</phase> |
| 194 | + <goals> |
| 195 | + <goal>sign</goal> |
| 196 | + </goals> |
| 197 | + <configuration> |
| 198 | + <gpgArguments> |
| 199 | + <gpgArgument>--pinentry-mode</gpgArgument> |
| 200 | + <gpgArgument>loopback</gpgArgument> |
| 201 | + </gpgArguments> |
| 202 | + </configuration> |
| 203 | + </execution> |
| 204 | + </executions> |
| 205 | + </plugin> |
| 206 | + </plugins> |
| 207 | + </build> |
| 208 | + </profile> |
| 209 | + </profiles> |
187 | 210 | </project>
|
0 commit comments