Skip to content

Commit 693674f

Browse files
committed
bump: version up to 2025.12.19.1
1 parent 183c265 commit 693674f

2 files changed

Lines changed: 27 additions & 25 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add the following dependency to your `pom.xml`:
2121
<dependency>
2222
<groupId>com.tapsilat</groupId>
2323
<artifactId>tapsilat-java-client</artifactId>
24-
<version>1.0.0-SNAPSHOT</version>
24+
<version>2025.12.19.1</version>
2525
</dependency>
2626
```
2727

@@ -30,7 +30,7 @@ Add the following dependency to your `pom.xml`:
3030
Add the dependency to your `build.gradle`:
3131

3232
```gradle
33-
implementation 'com.tapsilat:tapsilat-java-client:1.0.0-SNAPSHOT'
33+
implementation 'com.tapsilat:tapsilat-java-client:2025.12.19.1'
3434
```
3535

3636
---

pom.xml

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,63 @@
11
<?xml version="1.0"?>
2-
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0"
5+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
46
<modelVersion>4.0.0</modelVersion>
57
<groupId>com.tapsilat</groupId>
68
<artifactId>tapsilat-java-client</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
9+
<version>2025.12.19.1</version>
810
<properties>
911
<compiler-plugin.version>3.12.1</compiler-plugin.version>
1012
<maven.compiler.release>17</maven.compiler.release>
1113
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1214
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1315
<surefire-plugin.version>3.2.5</surefire-plugin.version>
1416
</properties>
15-
<!-- Required for publishing -->
16-
<distributionManagement>
17-
<repository>
18-
<id>ossrh</id>
19-
<name>OSSRH Release Repository</name>
20-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
21-
</repository>
22-
<snapshotRepository>
23-
<id>ossrh</id>
24-
<name>OSSRH Snapshot Repository</name>
25-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
26-
</snapshotRepository>
27-
</distributionManagement>
28-
17+
<!-- Required for publishing -->
18+
<distributionManagement>
19+
<repository>
20+
<id>ossrh</id>
21+
<name>OSSRH Release Repository</name>
22+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
23+
</repository>
24+
<snapshotRepository>
25+
<id>ossrh</id>
26+
<name>OSSRH Snapshot Repository</name>
27+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
28+
</snapshotRepository>
29+
</distributionManagement>
30+
2931
<dependencies>
3032
<!-- HTTP Client -->
3133
<dependency>
3234
<groupId>org.apache.httpcomponents.client5</groupId>
3335
<artifactId>httpclient5</artifactId>
3436
<version>5.3</version>
3537
</dependency>
36-
38+
3739
<!-- JSON Processing -->
3840
<dependency>
3941
<groupId>com.fasterxml.jackson.core</groupId>
4042
<artifactId>jackson-databind</artifactId>
4143
<version>2.16.1</version>
4244
</dependency>
43-
45+
4446
<!-- Logging -->
4547
<dependency>
4648
<groupId>org.slf4j</groupId>
4749
<artifactId>slf4j-api</artifactId>
4850
<version>2.0.9</version>
4951
</dependency>
50-
52+
5153
<!-- Testing -->
5254
<dependency>
5355
<groupId>org.junit.jupiter</groupId>
5456
<artifactId>junit-jupiter</artifactId>
5557
<version>5.10.1</version>
5658
<scope>test</scope>
5759
</dependency>
58-
60+
5961
<!-- Mockito for testing -->
6062
<dependency>
6163
<groupId>org.mockito</groupId>
@@ -64,7 +66,7 @@
6466
<scope>test</scope>
6567
</dependency>
6668
</dependencies>
67-
69+
6870
<build>
6971
<plugins>
7072
<plugin>
@@ -82,4 +84,4 @@
8284
</plugin>
8385
</plugins>
8486
</build>
85-
</project>
87+
</project>

0 commit comments

Comments
 (0)