diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 45fe502e..f33f83ac 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -39,7 +39,7 @@ jobs:
cache: 'maven'
- name: Build with Maven
- run: mvn -B -ff -ntp clean install -Dgpg.skip=true
+ run: mvn -B -ff -ntp clean install
- name: Publish Code Coverage
if: github.ref == 'refs/heads/main' && matrix.java == '11'
@@ -70,7 +70,7 @@ jobs:
cache: 'maven'
- name: Build with Maven
- run: mvn -B -ff -ntp clean install -Dgpg.skip=true
+ run: mvn -B -ff -ntp clean install
build_windows:
runs-on: windows-latest
@@ -93,7 +93,7 @@ jobs:
cache: 'maven'
- name: Build with Maven
- run: mvn -B -ff -ntp clean install --% -Dgpg.skip=true
+ run: mvn -B -ff -ntp clean install
verify-native:
name: Verify GraalVM ${{ matrix.java }} compatibility on ${{ matrix.os }}
@@ -111,7 +111,7 @@ jobs:
distribution: 'graalvm-community'
- name: Install nitrite
- run: mvn -B -ff -ntp clean install "-Dgpg.skip=true" -DskipTests
+ run: mvn -B -ff -ntp clean install -DskipTests
- name: Run native tests
working-directory: ./nitrite-native-tests
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index edb94a0e..be006b80 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -51,7 +51,7 @@ jobs:
PGP_KEY_PASSWORD: ${{ secrets.PGP_KEY_PASSWORD }}
- name: Deploy Release
- run: mvn -B -ff -ntp deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
+ run: mvn -P deploy -B -ff -ntp deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
shell: bash
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USER }}
diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml
index 2e4bab89..ddcdc1b8 100644
--- a/.github/workflows/snapshot.yml
+++ b/.github/workflows/snapshot.yml
@@ -51,7 +51,7 @@ jobs:
PGP_KEY_PASSWORD: ${{ secrets.PGP_KEY_PASSWORD }}
- name: Deploy Snapshot
- run: mvn -B -ff -ntp deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
+ run: mvn -P deploy -B -ff -ntp deploy -DskipTests -Dgpg.passphrase="$PGP_KEY_PASSWORD"
shell: bash
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USER }}
diff --git a/nitrite-bom/pom.xml b/nitrite-bom/pom.xml
index c2cdf4bf..2c9db54b 100644
--- a/nitrite-bom/pom.xml
+++ b/nitrite-bom/pom.xml
@@ -67,17 +67,4 @@
true
-
-
-
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
-
- org.sonatype.plugins
- nexus-staging-maven-plugin
-
-
-
diff --git a/nitrite-jackson-mapper/pom.xml b/nitrite-jackson-mapper/pom.xml
index 8b2d741e..7c6f7a3d 100644
--- a/nitrite-jackson-mapper/pom.xml
+++ b/nitrite-jackson-mapper/pom.xml
@@ -132,18 +132,10 @@
org.apache.maven.plugins
maven-source-plugin
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
org.codehaus.mojo
animal-sniffer-maven-plugin
-
- org.sonatype.plugins
- nexus-staging-maven-plugin
-
org.apache.maven.plugins
maven-jar-plugin
diff --git a/nitrite-mvstore-adapter/pom.xml b/nitrite-mvstore-adapter/pom.xml
index 6fce262f..eceb5d4a 100644
--- a/nitrite-mvstore-adapter/pom.xml
+++ b/nitrite-mvstore-adapter/pom.xml
@@ -174,14 +174,6 @@
org.apache.maven.plugins
maven-source-plugin
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
-
- org.sonatype.plugins
- nexus-staging-maven-plugin
-
org.apache.maven.plugins
maven-jar-plugin
diff --git a/nitrite-native-tests/pom.xml b/nitrite-native-tests/pom.xml
index 784d9acf..793dbdfe 100644
--- a/nitrite-native-tests/pom.xml
+++ b/nitrite-native-tests/pom.xml
@@ -22,7 +22,7 @@
3.26.3
5.11.3
- 0.10.3
+ 0.10.4
diff --git a/nitrite-rocksdb-adapter/pom.xml b/nitrite-rocksdb-adapter/pom.xml
index b011bc0f..edd368ff 100644
--- a/nitrite-rocksdb-adapter/pom.xml
+++ b/nitrite-rocksdb-adapter/pom.xml
@@ -172,14 +172,6 @@
org.apache.maven.plugins
maven-source-plugin
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
-
- org.sonatype.plugins
- nexus-staging-maven-plugin
-
org.apache.maven.plugins
maven-jar-plugin
diff --git a/nitrite-spatial/pom.xml b/nitrite-spatial/pom.xml
index 653f8bca..346d5242 100644
--- a/nitrite-spatial/pom.xml
+++ b/nitrite-spatial/pom.xml
@@ -122,10 +122,6 @@
org.codehaus.mojo
animal-sniffer-maven-plugin
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
org.sonatype.plugins
nexus-staging-maven-plugin
diff --git a/nitrite-support/pom.xml b/nitrite-support/pom.xml
index 4d3c3ace..0c022902 100644
--- a/nitrite-support/pom.xml
+++ b/nitrite-support/pom.xml
@@ -125,14 +125,6 @@
org.codehaus.mojo
animal-sniffer-maven-plugin
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
-
- org.sonatype.plugins
- nexus-staging-maven-plugin
-
org.apache.maven.plugins
maven-jar-plugin
diff --git a/nitrite/pom.xml b/nitrite/pom.xml
index aa5159c5..d8cdee59 100644
--- a/nitrite/pom.xml
+++ b/nitrite/pom.xml
@@ -206,18 +206,10 @@
org.apache.maven.plugins
maven-source-plugin
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
org.codehaus.mojo
animal-sniffer-maven-plugin
-
- org.sonatype.plugins
- nexus-staging-maven-plugin
-
org.apache.maven.plugins
maven-jar-plugin
diff --git a/pom.xml b/pom.xml
index 0922b837..0c56a8e5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,7 +52,7 @@
11
11
UTF-8
- 2.18.1
+ 2.18.2
2.0.16
1.9.3
2.3.232
@@ -60,16 +60,16 @@
5.6.2
1.20.0
1.17.1
- 2.17.0
- 2.0.21
+ 2.18.0
+ 2.1.0
1.7.3
0.6.1
- 1.18.34
+ 1.18.36
1.18.20.0
4.13.2
5.14.2
8.0.2.RELEASE
- 2.24.1
+ 2.24.3
4.2.2
2.13.0
2.0.3
@@ -80,11 +80,13 @@
33.3.1-jre
1.7.0
- 2.35.1
+
+ 2.31.0
+
0.8.12
3.5.2
3.13.0
- 3.11.1
+ 3.11.2
3.3.1
1.9.20
1.24
@@ -522,19 +524,27 @@
-
-
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
-
- org.sonatype.plugins
- nexus-staging-maven-plugin
-
-
+
+
+ deploy
+
+
+
+ org.apache.maven.plugins
+ maven-gpg-plugin
+
+
+ org.sonatype.plugins
+ nexus-staging-maven-plugin
+
+
+
+
+
+
+
diff --git a/potassium-nitrite/pom.xml b/potassium-nitrite/pom.xml
index 3432c940..2e596b54 100644
--- a/potassium-nitrite/pom.xml
+++ b/potassium-nitrite/pom.xml
@@ -162,14 +162,6 @@
org.codehaus.mojo
animal-sniffer-maven-plugin
-
- org.apache.maven.plugins
- maven-gpg-plugin
-
-
- org.sonatype.plugins
- nexus-staging-maven-plugin
-
org.apache.maven.plugins
maven-jar-plugin