Skip to content

Commit 35d66ba

Browse files
committed
The latest version update.
1 parent 0f4f061 commit 35d66ba

File tree

1 file changed

+110
-110
lines changed

1 file changed

+110
-110
lines changed

pom.xml

Lines changed: 110 additions & 110 deletions
Original file line numberDiff line numberDiff line change
@@ -1,110 +1,110 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
5-
6-
<groupId>wtx.woocommerce</groupId>
7-
<artifactId>woocommerce-api-client</artifactId>
8-
<version>0.1.5-alpha-20250412</version>
9-
<packaging>jar</packaging>
10-
11-
<name>WooCommerce REST API Client</name>
12-
<description>The WooCommerce REST API Client for Java provides easy access to the features of the e-commerce platform's API.</description>
13-
<url>https://github.com/wtx-labs/woocommerce-api-client-java</url>
14-
15-
<properties>
16-
<java.version>17</java.version>
17-
<maven.compiler.source>17</maven.compiler.source>
18-
<maven.compiler.target>17</maven.compiler.target>
19-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20-
</properties>
21-
22-
<dependencies>
23-
24-
<dependency>
25-
<groupId>javax.annotation</groupId>
26-
<artifactId>javax.annotation-api</artifactId>
27-
<version>1.3.2</version>
28-
</dependency>
29-
30-
<dependency>
31-
<groupId>com.squareup.okhttp3</groupId>
32-
<artifactId>okhttp</artifactId>
33-
<version>4.12.0</version>
34-
</dependency>
35-
36-
<dependency>
37-
<groupId>com.squareup.okhttp3</groupId>
38-
<artifactId>logging-interceptor</artifactId>
39-
<version>4.12.0</version>
40-
</dependency>
41-
42-
<dependency>
43-
<groupId>com.google.code.gson</groupId>
44-
<artifactId>gson</artifactId>
45-
<version>2.11.0</version>
46-
</dependency>
47-
48-
<dependency>
49-
<groupId>com.squareup.okio</groupId>
50-
<artifactId>okio</artifactId>
51-
<version>3.9.1</version>
52-
</dependency>
53-
54-
<dependency>
55-
<groupId>io.gsonfire</groupId>
56-
<artifactId>gson-fire</artifactId>
57-
<version>1.9.0</version>
58-
</dependency>
59-
60-
<dependency>
61-
<groupId>com.google.code.findbugs</groupId>
62-
<artifactId>jsr305</artifactId>
63-
<version>3.0.2</version>
64-
</dependency>
65-
66-
</dependencies>
67-
68-
<build>
69-
<plugins>
70-
71-
<plugin>
72-
<groupId>org.apache.maven.plugins</groupId>
73-
<artifactId>maven-compiler-plugin</artifactId>
74-
<version>3.11.0</version>
75-
<configuration>
76-
<source>${maven.compiler.source}</source>
77-
<target>${maven.compiler.target}</target>
78-
</configuration>
79-
</plugin>
80-
81-
<plugin>
82-
<groupId>org.apache.maven.plugins</groupId>
83-
<artifactId>maven-assembly-plugin</artifactId>
84-
<version>3.3.0</version>
85-
<configuration>
86-
<descriptorRefs>
87-
<descriptorRef>jar-with-dependencies</descriptorRef>
88-
</descriptorRefs>
89-
<archive>
90-
<manifest>
91-
<mainClass>wtx.woocommerce.WooCommerceApiClientUsageDemo</mainClass>
92-
</manifest>
93-
</archive>
94-
<appendAssemblyId>false</appendAssemblyId>
95-
</configuration>
96-
<executions>
97-
<execution>
98-
<id>assemble-jar-with-dependencies</id>
99-
<phase>package</phase>
100-
<goals>
101-
<goal>single</goal>
102-
</goals>
103-
</execution>
104-
</executions>
105-
</plugin>
106-
107-
</plugins>
108-
</build>
109-
110-
</project>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>wtx.woocommerce</groupId>
7+
<artifactId>woocommerce-api-client</artifactId>
8+
<version>0.1.6-alpha-20250609</version>
9+
<packaging>jar</packaging>
10+
11+
<name>WooCommerce REST API Client</name>
12+
<description>The WooCommerce REST API Client for Java provides easy access to the features of the e-commerce platform's API.</description>
13+
<url>https://github.com/wtx-labs/woocommerce-api-client-java</url>
14+
15+
<properties>
16+
<java.version>17</java.version>
17+
<maven.compiler.source>17</maven.compiler.source>
18+
<maven.compiler.target>17</maven.compiler.target>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
</properties>
21+
22+
<dependencies>
23+
24+
<dependency>
25+
<groupId>javax.annotation</groupId>
26+
<artifactId>javax.annotation-api</artifactId>
27+
<version>1.3.2</version>
28+
</dependency>
29+
30+
<dependency>
31+
<groupId>com.squareup.okhttp3</groupId>
32+
<artifactId>okhttp</artifactId>
33+
<version>4.12.0</version>
34+
</dependency>
35+
36+
<dependency>
37+
<groupId>com.squareup.okhttp3</groupId>
38+
<artifactId>logging-interceptor</artifactId>
39+
<version>4.12.0</version>
40+
</dependency>
41+
42+
<dependency>
43+
<groupId>com.google.code.gson</groupId>
44+
<artifactId>gson</artifactId>
45+
<version>2.11.0</version>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>com.squareup.okio</groupId>
50+
<artifactId>okio</artifactId>
51+
<version>3.9.1</version>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>io.gsonfire</groupId>
56+
<artifactId>gson-fire</artifactId>
57+
<version>1.9.0</version>
58+
</dependency>
59+
60+
<dependency>
61+
<groupId>com.google.code.findbugs</groupId>
62+
<artifactId>jsr305</artifactId>
63+
<version>3.0.2</version>
64+
</dependency>
65+
66+
</dependencies>
67+
68+
<build>
69+
<plugins>
70+
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-compiler-plugin</artifactId>
74+
<version>3.11.0</version>
75+
<configuration>
76+
<source>${maven.compiler.source}</source>
77+
<target>${maven.compiler.target}</target>
78+
</configuration>
79+
</plugin>
80+
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-assembly-plugin</artifactId>
84+
<version>3.3.0</version>
85+
<configuration>
86+
<descriptorRefs>
87+
<descriptorRef>jar-with-dependencies</descriptorRef>
88+
</descriptorRefs>
89+
<archive>
90+
<manifest>
91+
<mainClass>wtx.woocommerce.WooCommerceApiClientUsageDemo</mainClass>
92+
</manifest>
93+
</archive>
94+
<appendAssemblyId>false</appendAssemblyId>
95+
</configuration>
96+
<executions>
97+
<execution>
98+
<id>assemble-jar-with-dependencies</id>
99+
<phase>package</phase>
100+
<goals>
101+
<goal>single</goal>
102+
</goals>
103+
</execution>
104+
</executions>
105+
</plugin>
106+
107+
</plugins>
108+
</build>
109+
110+
</project>

0 commit comments

Comments
 (0)