|
6 | 6 |
|
7 | 7 | <groupId>pl.wtx.woocommerce</groupId> |
8 | 8 | <artifactId>woocommerce-api-client</artifactId> |
9 | | - <version>0.9.4</version> |
| 9 | + <version>0.9.5</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>WooCommerce REST API Client</name> |
|
24 | 24 | <gsonfire.version>1.9.0</gsonfire.version> |
25 | 25 | <jsr305.version>3.0.2</jsr305.version> |
26 | 26 | <javax.annotation.version>1.3.2</javax.annotation.version> |
| 27 | + <maven.deploy.skip>true</maven.deploy.skip> |
27 | 28 | </properties> |
28 | 29 |
|
| 30 | + <distributionManagement> |
| 31 | + <snapshotRepository> |
| 32 | + <id>ossrh</id> |
| 33 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 34 | + </snapshotRepository> |
| 35 | + <repository> |
| 36 | + <id>ossrh</id> |
| 37 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 38 | + </repository> |
| 39 | + </distributionManagement> |
| 40 | + |
29 | 41 | <dependencies> |
30 | 42 |
|
31 | 43 | <dependency> |
|
164 | 176 | </executions> |
165 | 177 | </plugin> |
166 | 178 |
|
| 179 | + <plugin> |
| 180 | + <groupId>org.apache.maven.plugins</groupId> |
| 181 | + <artifactId>maven-gpg-plugin</artifactId> |
| 182 | + <version>3.1.0</version> |
| 183 | + <executions> |
| 184 | + <execution> |
| 185 | + <id>sign-artifacts</id> |
| 186 | + <phase>verify</phase> |
| 187 | + <goals> |
| 188 | + <goal>sign</goal> |
| 189 | + </goals> |
| 190 | + </execution> |
| 191 | + </executions> |
| 192 | + </plugin> |
| 193 | + |
| 194 | + <plugin> |
| 195 | + <groupId>org.sonatype.plugins</groupId> |
| 196 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 197 | + <version>1.6.13</version> |
| 198 | + <extensions>true</extensions> |
| 199 | + <configuration> |
| 200 | + <serverId>ossrh</serverId> |
| 201 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 202 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 203 | + </configuration> |
| 204 | + </plugin> |
| 205 | + |
167 | 206 | </plugins> |
168 | 207 | </build> |
169 | 208 |
|
|
201 | 240 | </developer> |
202 | 241 | </developers> |
203 | 242 |
|
| 243 | + <profiles> |
| 244 | + <profile> |
| 245 | + <id>release</id> |
| 246 | + <build> |
| 247 | + <plugins> |
| 248 | + <plugin> |
| 249 | + <groupId>org.apache.maven.plugins</groupId> |
| 250 | + <artifactId>maven-source-plugin</artifactId> |
| 251 | + <executions> |
| 252 | + <execution> |
| 253 | + <id>attach-sources</id> |
| 254 | + <goals> |
| 255 | + <goal>jar-no-fork</goal> |
| 256 | + </goals> |
| 257 | + </execution> |
| 258 | + </executions> |
| 259 | + </plugin> |
| 260 | + <plugin> |
| 261 | + <groupId>org.apache.maven.plugins</groupId> |
| 262 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 263 | + <executions> |
| 264 | + <execution> |
| 265 | + <id>attach-javadocs</id> |
| 266 | + <goals> |
| 267 | + <goal>jar</goal> |
| 268 | + </goals> |
| 269 | + </execution> |
| 270 | + </executions> |
| 271 | + </plugin> |
| 272 | + <plugin> |
| 273 | + <groupId>org.apache.maven.plugins</groupId> |
| 274 | + <artifactId>maven-gpg-plugin</artifactId> |
| 275 | + <executions> |
| 276 | + <execution> |
| 277 | + <id>sign-artifacts</id> |
| 278 | + <phase>verify</phase> |
| 279 | + <goals> |
| 280 | + <goal>sign</goal> |
| 281 | + </goals> |
| 282 | + </execution> |
| 283 | + </executions> |
| 284 | + </plugin> |
| 285 | + </plugins> |
| 286 | + </build> |
| 287 | + </profile> |
| 288 | + </profiles> |
| 289 | + |
204 | 290 | </project> |
0 commit comments