Skip to content

Commit 8097bdd

Browse files
committed
Bump version to 0.9.5
1 parent 77b89f0 commit 8097bdd

File tree

2 files changed

+89
-3
lines changed

2 files changed

+89
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ This API client provides a type-safe Java interface for WooCommerce REST API v3,
6363
6464
## 📦 Version information
6565

66-
- **Current version**: `0.9.4`
66+
- **Current version**: `0.9.5`
6767
- **Supported WooCommerce API version**: `v3`
6868
- **Java compatibility**: Java 8+
6969

@@ -93,7 +93,7 @@ Then add the locally built artifact to your project:
9393
<dependency>
9494
<groupId>pl.wtx.woocommerce</groupId>
9595
<artifactId>woocommerce-api-client</artifactId>
96-
<version>0.9.4</version>
96+
<version>0.9.5</version>
9797
</dependency>
9898
```
9999

pom.xml

Lines changed: 87 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>pl.wtx.woocommerce</groupId>
88
<artifactId>woocommerce-api-client</artifactId>
9-
<version>0.9.4</version>
9+
<version>0.9.5</version>
1010
<packaging>jar</packaging>
1111

1212
<name>WooCommerce REST API Client</name>
@@ -24,8 +24,20 @@
2424
<gsonfire.version>1.9.0</gsonfire.version>
2525
<jsr305.version>3.0.2</jsr305.version>
2626
<javax.annotation.version>1.3.2</javax.annotation.version>
27+
<maven.deploy.skip>true</maven.deploy.skip>
2728
</properties>
2829

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+
2941
<dependencies>
3042

3143
<dependency>
@@ -164,6 +176,33 @@
164176
</executions>
165177
</plugin>
166178

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+
167206
</plugins>
168207
</build>
169208

@@ -201,4 +240,51 @@
201240
</developer>
202241
</developers>
203242

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+
204290
</project>

0 commit comments

Comments
 (0)