Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7aee2ac
improve testing
UrielCh Aug 2, 2025
c18ae14
fix maven-resources-plugin version to 3.3.1
UrielCh Aug 2, 2025
c5a8a7c
patch on github ations
UrielCh Aug 2, 2025
4cf87ea
patch versions
UrielCh Aug 2, 2025
4379f31
fix version
UrielCh Aug 2, 2025
6837e8a
rollback versions
UrielCh Aug 2, 2025
9dd4ac4
downgrade
UrielCh Aug 2, 2025
20714c2
add condition for github workflows
UrielCh Aug 2, 2025
d028b7c
patch action
UrielCh Aug 2, 2025
39ab9e8
test patch action
UrielCh Aug 2, 2025
f8fbab8
edd exta test in action
UrielCh Aug 2, 2025
08e708a
add jacoco
UrielCh Aug 2, 2025
0827ee7
patch coverage
UrielCh Aug 2, 2025
bcef083
patch coverage
UrielCh Aug 2, 2025
f22ff39
Support reading multiple JSON syntax blocks in a single input (#269) …
caimo Aug 2, 2025
212c00a
change year + offset some code + fix warning
UrielCh Aug 2, 2025
4e90a1c
fix warnings
UrielCh Aug 2, 2025
7088c76
fix warnings
UrielCh Aug 2, 2025
20345c1
add missing jsdoc
UrielCh Aug 2, 2025
9bd1f3f
add missing jsdoc
UrielCh Aug 2, 2025
c10e086
spotless:apply
UrielCh Aug 2, 2025
f521a43
add tests
UrielCh Aug 2, 2025
8d8fc3e
mvn spotless:apply
UrielCh Aug 2, 2025
90fa7c2
add tests
UrielCh Aug 2, 2025
2917382
mvn spotless:apply
UrielCh Aug 2, 2025
cb8b7c1
add tests
UrielCh Aug 2, 2025
fc21da7
add publishing action
UrielCh Aug 2, 2025
1d80e2b
update changelog
UrielCh Aug 2, 2025
654d785
Merge branch 'master' into upgrade
UrielCh Aug 2, 2025
2864aa0
patch relase script
UrielCh Aug 2, 2025
3129981
Merge branch 'master' into upgrade
UrielCh Aug 2, 2025
28f4f44
change publisher repo
UrielCh Aug 2, 2025
0dfe3e7
Merge branch 'master' into upgrade
UrielCh Aug 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
server-id: central
server-username: CENTRAL_TOKEN_USERNAME
server-password: CENTRAL_TOKEN_PASSWORD
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: GPG_PASSPHRASE

Expand All @@ -39,24 +39,24 @@ jobs:
cd accessors-smart
./mvnw clean deploy -q -P release-sign-artifacts
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Release json-smart
run: |
cd json-smart
./mvnw clean deploy -q -P release-sign-artifacts
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Release json-smart-action
run: |
cd json-smart-action
./mvnw clean deploy -q -P release-sign-artifacts
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
CENTRAL_TOKEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
CENTRAL_TOKEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
8 changes: 2 additions & 6 deletions accessors-smart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,9 @@ limitations under the License.
<url>https://github.com/netplex/json-smart-v2</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<id>central</id>
<url>https://central.sonatype.com/api/v1/publisher/upload</url>
</repository>
</distributionManagement>
<!-- release with: export GPG_TTY=$(tty); mvn clean deploy -P release-sign-artifacts -->
Expand Down
8 changes: 2 additions & 6 deletions json-smart-action/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,9 @@
<url>https://github.com/netplex/json-smart-v2</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<id>central</id>
<url>https://central.sonatype.com/api/v1/publisher/upload</url>
</repository>
</distributionManagement>
<!-- release with: export GPG_TTY=$(tty); mvn clean deploy -P release-sign-artifacts -->
Expand Down
8 changes: 2 additions & 6 deletions json-smart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,9 @@ limitations under the License.
<url>https://github.com/netplex/json-smart-v2</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<id>central</id>
<url>https://central.sonatype.com/api/v1/publisher/upload</url>
</repository>
</distributionManagement>
<!-- release with: export GPG_TTY=$(tty); mvn clean deploy -P release-sign-artifacts -->
Expand Down
Loading