|
6 | 6 |
|
7 | 7 | <groupId>com.amazonaws</groupId>
|
8 | 8 | <artifactId>amazon-sqs-java-extended-client-lib</artifactId>
|
9 |
| - <version>1.0.2</version> |
| 9 | + <version>1.1.0</version> |
10 | 10 | <packaging>jar</packaging>
|
11 | 11 | <name>Amazon SQS Extended Client Library for Java</name>
|
12 | 12 | <description>An extension to the Amazon SQS client that enables sending and receiving messages up to 2GB via Amazon S3.
|
|
52 | 52 | <version>${aws-java-sdk.version}</version>
|
53 | 53 | </dependency>
|
54 | 54 |
|
| 55 | + <dependency> |
| 56 | + <groupId>software.amazon.payloadoffloading</groupId> |
| 57 | + <artifactId>payloadoffloading-common</artifactId> |
| 58 | + <version>1.0.0</version> |
| 59 | + </dependency> |
| 60 | + |
55 | 61 | <dependency>
|
56 | 62 | <groupId>junit</groupId>
|
57 | 63 | <artifactId>junit</artifactId>
|
|
73 | 79 | <artifactId>maven-compiler-plugin</artifactId>
|
74 | 80 | <version>3.2</version>
|
75 | 81 | <configuration>
|
76 |
| - <source>1.7</source> |
77 |
| - <target>1.7</target> |
| 82 | + <source>1.8</source> |
| 83 | + <target>1.8</target> |
78 | 84 | <encoding>UTF-8</encoding>
|
79 | 85 | </configuration>
|
80 | 86 | </plugin>
|
81 | 87 | </plugins>
|
82 | 88 | </pluginManagement>
|
| 89 | + <plugins> |
| 90 | + <plugin> |
| 91 | + <groupId>org.apache.maven.plugins</groupId> |
| 92 | + <artifactId>maven-source-plugin</artifactId> |
| 93 | + <version>2.2.1</version> |
| 94 | + <executions> |
| 95 | + <execution> |
| 96 | + <id>attach-sources</id> |
| 97 | + <goals> |
| 98 | + <goal>jar-no-fork</goal> |
| 99 | + </goals> |
| 100 | + </execution> |
| 101 | + </executions> |
| 102 | + </plugin> |
| 103 | + <plugin> |
| 104 | + <groupId>org.apache.maven.plugins</groupId> |
| 105 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 106 | + <version>2.9.1</version> |
| 107 | + <executions> |
| 108 | + <execution> |
| 109 | + <id>attach-javadocs</id> |
| 110 | + <goals> |
| 111 | + <goal>jar</goal> |
| 112 | + </goals> |
| 113 | + <configuration> |
| 114 | + <!-- |
| 115 | + TODO-RS: Java 8 is more strict about some javadoc tags. |
| 116 | + We'll need to update quite a few to remove this workaround. |
| 117 | + --> |
| 118 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 119 | + </configuration> |
| 120 | + </execution> |
| 121 | + </executions> |
| 122 | + </plugin> |
| 123 | + <plugin> |
| 124 | + <groupId>org.sonatype.plugins</groupId> |
| 125 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 126 | + <version>1.6.7</version> |
| 127 | + <extensions>true</extensions> |
| 128 | + <configuration> |
| 129 | + <serverId>ossrh</serverId> |
| 130 | + <nexusUrl>https://aws.oss.sonatype.org</nexusUrl> |
| 131 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 132 | + </configuration> |
| 133 | + </plugin> |
| 134 | + </plugins> |
83 | 135 | </build>
|
| 136 | + |
| 137 | + <profiles> |
| 138 | + <profile> |
| 139 | + <id>publishing</id> |
| 140 | + |
| 141 | + <distributionManagement> |
| 142 | + <snapshotRepository> |
| 143 | + <id>ossrh</id> |
| 144 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 145 | + </snapshotRepository> |
| 146 | + <repository> |
| 147 | + <id>ossrh</id> |
| 148 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 149 | + </repository> |
| 150 | + </distributionManagement> |
| 151 | + |
| 152 | + <build> |
| 153 | + <plugins> |
| 154 | + <plugin> |
| 155 | + <groupId>org.apache.maven.plugins</groupId> |
| 156 | + <artifactId>maven-gpg-plugin</artifactId> |
| 157 | + <version>1.6</version> |
| 158 | + <executions> |
| 159 | + <execution> |
| 160 | + <id>sign-artifacts</id> |
| 161 | + <phase>verify</phase> |
| 162 | + <goals> |
| 163 | + <goal>sign</goal> |
| 164 | + </goals> |
| 165 | + <configuration> |
| 166 | + <gpgArguments> |
| 167 | + <gpgArgument>--pinentry-mode</gpgArgument> |
| 168 | + <gpgArgument>loopback</gpgArgument> |
| 169 | + </gpgArguments> |
| 170 | + </configuration> |
| 171 | + </execution> |
| 172 | + </executions> |
| 173 | + </plugin> |
| 174 | + </plugins> |
| 175 | + </build> |
| 176 | + </profile> |
| 177 | + </profiles> |
84 | 178 | </project>
|
0 commit comments