Skip to content

Commit 13a3a50

Browse files
version bump
1 parent ab04895 commit 13a3a50

File tree

2 files changed

+71
-48
lines changed

2 files changed

+71
-48
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for communicating with Amazon Simple Queue Service. This project builds on top o
1515
<dependency>
1616
<groupId>com.amazonaws</groupId>
1717
<artifactId>amazon-sqs-java-messaging-lib</artifactId>
18-
<version>1.0.9</version>
18+
<version>1.1.0</version>
1919
<type>jar</type>
2020
</dependency>
2121
```

pom.xml

Lines changed: 70 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,23 @@
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">
52
<modelVersion>4.0.0</modelVersion>
6-
73
<groupId>com.amazonaws</groupId>
84
<artifactId>amazon-sqs-java-messaging-lib</artifactId>
95
<version>1.1.0</version>
10-
<packaging>jar</packaging>
116
<name>Amazon SQS Java Messaging Library</name>
127
<description>The Amazon SQS Java Messaging Library holds the Java Message Service compatible classes, that are used
138
for communicating with Amazon Simple Queue Service.
149
</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>
1711
<scm>
1812
<url>https://github.com/awslabs/amazon-sqs-java-messaging-lib.git</url>
1913
</scm>
20-
2114
<licenses>
2215
<license>
2316
<name>Apache License, Version 2.0</name>
2417
<url>https://aws.amazon.com/apache2.0</url>
2518
<distribution>repo</distribution>
2619
</license>
2720
</licenses>
28-
2921
<developers>
3022
<developer>
3123
<id>amazonwebservices</id>
@@ -36,9 +28,9 @@
3628
</roles>
3729
</developer>
3830
</developers>
39-
4031
<properties>
4132
<aws-java-sdk.version>1.11.106</aws-java-sdk.version>
33+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4234
</properties>
4335

4436
<dependencies>
@@ -52,7 +44,12 @@
5244
<artifactId>geronimo-jms_1.1_spec</artifactId>
5345
<version>1.1.1</version>
5446
</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>
5653
<dependency>
5754
<groupId>junit</groupId>
5855
<artifactId>junit</artifactId>
@@ -80,6 +77,19 @@
8077
<encoding>UTF-8</encoding>
8178
</configuration>
8279
</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>
8393
</plugins>
8494
</pluginManagement>
8595
<plugins>
@@ -106,10 +116,10 @@
106116
<goals>
107117
<goal>jar</goal>
108118
</goals>
109-
<configuration>
110-
<!--
119+
<configuration>
120+
<!--
111121
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.
113123
-->
114124
<additionalparam>-Xdoclint:none</additionalparam>
115125
</configuration>
@@ -122,40 +132,53 @@
122132
<version>1.6.7</version>
123133
<extensions>true</extensions>
124134
<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>
128138
</configuration>
129139
</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>
148140
</plugins>
149141
</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>
161184
</project>

0 commit comments

Comments
 (0)