Skip to content

Commit 37080e1

Browse files
Merge pull request #73 from textkernel/fix-CI
fix release step in CI
2 parents 03b11ac + 130a0ad commit 37080e1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ jobs:
7373
- name: Publish to Apache Maven Central
7474
run: mvn -B clean deploy -DskipTests
7575
env:
76-
MAVEN_USERNAME: GerskonW
76+
MAVEN_USERNAME: KBp2Uz
7777
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN_TK }}
7878
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE_TK }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The official Java SDK for the Textkernel Tx v10 API for resume/CV and job parsin
1313
### Gradle Users
1414
Add this dependency to your project's build file:
1515
```
16-
implementation "com.textkernel:tx-java:3.0.1"
16+
implementation "com.textkernel:tx-java:3.0.2"
1717
```
1818

1919
### Maven Users
@@ -22,13 +22,13 @@ Add this dependency to your project's POM:
2222
<dependency>
2323
<groupId>com.textkernel</groupId>
2424
<artifactId>tx-java</artifactId>
25-
<version>3.0.1</version>
25+
<version>3.0.2</version>
2626
</dependency>
2727
```
2828

2929
### Others
3030
You'll need to manually install the following JARs:
31-
- The Textkernel Tx JAR from https://repo1.maven.org/maven2/com/textkernel/tx-java/3.0.1/tx-java-3.0.1.jar
31+
- The Textkernel Tx JAR from https://repo1.maven.org/maven2/com/textkernel/tx-java/3.0.2/tx-java-3.0.2.jar
3232
- [Google Gson][gson_url] from https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar
3333
- [Square OkHttp][okhttp_url] from https://repo1.maven.org/maven2/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.jar
3434

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.textkernel</groupId>
55
<artifactId>tx-java</artifactId>
66

7-
<version>3.0.1</version>
7+
<version>3.0.2</version>
88

99
<packaging>jar</packaging>
1010
<name>Textkernel Tx Java SDK</name>
@@ -166,7 +166,7 @@
166166
<plugin>
167167
<groupId>org.sonatype.plugins</groupId>
168168
<artifactId>nexus-staging-maven-plugin</artifactId>
169-
<version>1.6.6</version>
169+
<version>1.6.14</version>
170170
<extensions>true</extensions>
171171
<executions>
172172
<execution>
@@ -179,7 +179,7 @@
179179
</executions>
180180
<configuration>
181181
<serverId>ossrh</serverId>
182-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
182+
<nexusUrl>https://ossrh-staging-api.central.sonatype.com</nexusUrl>
183183
<autoReleaseAfterClose>true</autoReleaseAfterClose>
184184
<stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes>
185185
<keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure>

0 commit comments

Comments
 (0)