|
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 | 5 | <version>1.1.0</version>
|
10 |
| - <packaging>jar</packaging> |
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 | 32 | <aws-java-sdk.version>1.11.106</aws-java-sdk.version>
|
| 33 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
42 | 34 | </properties>
|
43 | 35 |
|
44 | 36 | <dependencies>
|
|
52 | 44 | <artifactId>geronimo-jms_1.1_spec</artifactId>
|
53 | 45 | <version>1.1.1</version>
|
54 | 46 | </dependency>
|
55 |
| - |
| 47 | + <dependency> |
| 48 | + <groupId>org.junit.jupiter</groupId> |
| 49 | + <artifactId>junit-jupiter-engine</artifactId> |
| 50 | + <version>5.7.0-M1</version> |
| 51 | + <scope>test</scope> |
| 52 | + </dependency> |
56 | 53 | <dependency>
|
57 | 54 | <groupId>junit</groupId>
|
58 | 55 | <artifactId>junit</artifactId>
|
|
80 | 77 | <encoding>UTF-8</encoding>
|
81 | 78 | </configuration>
|
82 | 79 | </plugin>
|
| 80 | + <plugin> |
| 81 | + <groupId>org.apache.maven.plugins</groupId> |
| 82 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 83 | + <version>3.0.0-M1</version> |
| 84 | + <executions> |
| 85 | + <execution> |
| 86 | + <goals> |
| 87 | + <goal>integration-test</goal> |
| 88 | + <goal>verify</goal> |
| 89 | + </goals> |
| 90 | + </execution> |
| 91 | + </executions> |
| 92 | + </plugin> |
83 | 93 | </plugins>
|
84 | 94 | </pluginManagement>
|
85 | 95 | <plugins>
|
|
106 | 116 | <goals>
|
107 | 117 | <goal>jar</goal>
|
108 | 118 | </goals>
|
109 |
| - <configuration> |
110 |
| - <!-- |
| 119 | + <configuration> |
| 120 | + <!-- |
111 | 121 | TODO-RS: Java 8 is more strict about some javadoc tags.
|
112 |
| - We'll need to update quite a few to remove this workaround. |
| 122 | + We'll need to update quite a few to remove this workaround. |
113 | 123 | -->
|
114 | 124 | <additionalparam>-Xdoclint:none</additionalparam>
|
115 | 125 | </configuration>
|
|
122 | 132 | <version>1.6.7</version>
|
123 | 133 | <extensions>true</extensions>
|
124 | 134 | <configuration>
|
125 |
| - <serverId>ossrh</serverId> |
126 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
127 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 135 | + <serverId>ossrh</serverId> |
| 136 | + <nexusUrl>https://aws.oss.sonatype.org</nexusUrl> |
| 137 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
128 | 138 | </configuration>
|
129 | 139 | </plugin>
|
130 |
| - <plugin> |
131 |
| - <groupId>org.apache.maven.plugins</groupId> |
132 |
| - <artifactId>maven-gpg-plugin</artifactId> |
133 |
| - <executions> |
134 |
| - <execution> |
135 |
| - <id>sign-artifacts</id> |
136 |
| - <phase>verify</phase> |
137 |
| - <goals> |
138 |
| - <goal>sign</goal> |
139 |
| - </goals> |
140 |
| - <configuration> |
141 |
| - <keyname>${gpg.sqs.keyname}</keyname> |
142 |
| - <passphraseServerId>gpg.sqs.passphrase</passphraseServerId> |
143 |
| - <skip>true</skip> |
144 |
| - </configuration> |
145 |
| - </execution> |
146 |
| - </executions> |
147 |
| - </plugin> |
148 | 140 | </plugins>
|
149 | 141 | </build>
|
150 |
| - |
151 |
| - <distributionManagement> |
152 |
| - <snapshotRepository> |
153 |
| - <id>ossrh</id> |
154 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
155 |
| - </snapshotRepository> |
156 |
| - <repository> |
157 |
| - <id>ossrh</id> |
158 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
159 |
| - </repository> |
160 |
| - </distributionManagement> |
| 142 | + |
| 143 | + <profiles> |
| 144 | + <profile> |
| 145 | + <id>publishing</id> |
| 146 | + |
| 147 | + <distributionManagement> |
| 148 | + <snapshotRepository> |
| 149 | + <id>ossrh</id> |
| 150 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 151 | + </snapshotRepository> |
| 152 | + <repository> |
| 153 | + <id>ossrh</id> |
| 154 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 155 | + </repository> |
| 156 | + </distributionManagement> |
| 157 | + |
| 158 | + <build> |
| 159 | + <plugins> |
| 160 | + <plugin> |
| 161 | + <groupId>org.apache.maven.plugins</groupId> |
| 162 | + <artifactId>maven-gpg-plugin</artifactId> |
| 163 | + <version>1.6</version> |
| 164 | + <executions> |
| 165 | + <execution> |
| 166 | + <id>sign-artifacts</id> |
| 167 | + <phase>verify</phase> |
| 168 | + <goals> |
| 169 | + <goal>sign</goal> |
| 170 | + </goals> |
| 171 | + <configuration> |
| 172 | + <gpgArguments> |
| 173 | + <gpgArgument>--pinentry-mode</gpgArgument> |
| 174 | + <gpgArgument>loopback</gpgArgument> |
| 175 | + </gpgArguments> |
| 176 | + </configuration> |
| 177 | + </execution> |
| 178 | + </executions> |
| 179 | + </plugin> |
| 180 | + </plugins> |
| 181 | + </build> |
| 182 | + </profile> |
| 183 | + </profiles> |
161 | 184 | </project>
|
0 commit comments