diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 51f3a66..a5f5830 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -34,4 +34,4 @@ jobs:
java-version: '${{ matrix.version }}'
cache: maven
- name: Test Java
- run: mvn -B clean install
+ run: mvn --no-transfer-progress -B clean install
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3a9f698..2e828c2 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -41,7 +41,7 @@ jobs:
gpg --list-secret-keys --keyid-format LONG
- name: Compile
- run: mvn --batch-mode clean install -DskipTests
+ run: mvn --no-transfer-progress --batch-mode clean install -DskipTests
- name: Setup Git
run: |
@@ -50,7 +50,7 @@ jobs:
- name: Set the version
run: |
- mvn versions:set -DgenerateBackupPoms=false -DnewVersion=${{ github.event.inputs.release-version }}
+ mvn --no-transfer-progress --batch-mode versions:set -DgenerateBackupPoms=false -DnewVersion=${{ github.event.inputs.release-version }}
git add .
git commit -m "Release version update ${{ github.event.inputs.release-version }}"
git tag ${{ github.event.inputs.release-version }}
@@ -60,7 +60,7 @@ jobs:
- name: Release to Maven Central
run: |
- mvn --batch-mode deploy -Prelease -DskipTests=true
+ mvn --no-transfer-progress --batch-mode deploy -Prelease -DskipTests=true
env:
MAVEN_USERNAME: ${{ secrets.central_username }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.central_password }}
diff --git a/pom.xml b/pom.xml
index d7e7cc5..64fee35 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,6 +8,8 @@
pom
proxy-wasm-java-host-parent
+
+ The Java host implementation for Proxy-Wasm, enabling developers to run Proxy-Wasm plugins in JAX-RS.
https://github.com/roastedroot/proxy-wasm-java-host/
@@ -18,11 +20,30 @@
A business-friendly OSS license
+
+
+ chirino
+ Hiram Chirino
+ hiram@hiramchirino.com
+ Red Hat
+
+
+ andreaTP
+ Andrea Peruffo
+ andrea.peruffo1982@gmail.com
+ Red Hat
+
+
proxy-wasm-java-host
proxy-wasm-jaxrs
+
+ scm:git:git://github.com/roastedroot/proxy-wasm-java-host.git
+ scm:git:git@github.com:roastedroot/proxy-wasm-java-host.git
+ https://github.com/roastedroot/proxy-wasm-java-host
+
@@ -280,4 +301,5 @@
+