Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down
22 changes: 22 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<packaging>pom</packaging>

<name>proxy-wasm-java-host-parent</name>

<description>The Java host implementation for Proxy-Wasm, enabling developers to run Proxy-Wasm plugins in JAX-RS.</description>
<url>https://github.com/roastedroot/proxy-wasm-java-host/</url>

<licenses>
Expand All @@ -18,11 +20,30 @@
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<developers>
<developer>
<id>chirino</id>
<name>Hiram Chirino</name>
<email>hiram@hiramchirino.com</email>
<organization>Red Hat</organization>
</developer>
<developer>
<id>andreaTP</id>
<name>Andrea Peruffo</name>
<email>andrea.peruffo1982@gmail.com</email>
<organization>Red Hat</organization>
</developer>
</developers>

<modules>
<module>proxy-wasm-java-host</module>
<module>proxy-wasm-jaxrs</module>
</modules>
<scm>
<connection>scm:git:git://github.com/roastedroot/proxy-wasm-java-host.git</connection>
<developerConnection>scm:git:git@github.com:roastedroot/proxy-wasm-java-host.git</developerConnection>
<url>https://github.com/roastedroot/proxy-wasm-java-host</url>
</scm>

<properties>
<!-- build settings -->
Expand Down Expand Up @@ -280,4 +301,5 @@
</build>
</profile>
</profiles>

</project>