-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/github_actions/dcarbone/install-y…
…q-action-1.1.1
- Loading branch information
Showing
46 changed files
with
2,366 additions
and
7,708 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Quarkiverse Release | |
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
types: [ closed ] | ||
paths: | ||
- '.github/project.yml' | ||
|
||
|
@@ -30,18 +30,23 @@ jobs: | |
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
java-version: 21 | ||
cache: 'maven' | ||
server-id: ossrh | ||
server-username: MAVEN_USERNAME | ||
server-password: MAVEN_PASSWORD | ||
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | ||
gpg-passphrase: MAVEN_GPG_PASSPHRASE | ||
|
||
- name: Set up Maven 3.9.6 | ||
uses: stCarolas/setup-maven@v5 | ||
with: | ||
maven-version: 3.9.6 | ||
|
||
- name: Configure Git author | ||
run: | | ||
git config --local user.email "[email protected]" | ||
|
@@ -50,8 +55,8 @@ jobs: | |
- name: Update latest release version in docs | ||
run: | | ||
mvn -B -ntp -pl docs -am package -DskipTests -DskipITs -Denforcer.skip -Dformatter.skip -Dimpsort.skip | ||
if ! git diff --quiet docs/modules/ROOT/pages/includes/attributes.adoc; then | ||
git add docs/modules/ROOT/pages/includes/attributes.adoc | ||
if ! git diff --quiet docs/modules/ROOT/pages/includes; then | ||
git add docs/modules/ROOT/pages/includes | ||
git commit -m "Update the latest release version ${{steps.metadata.outputs.current-version}} in documentation" | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>io.quarkiverse.diameter</groupId> | ||
<artifactId>diameter-parent</artifactId> | ||
<groupId>io.quarkiverse.jdiameter</groupId> | ||
<artifactId>quarkus-jdiameter-parent</artifactId> | ||
<version>2.0.0</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
@@ -14,40 +14,7 @@ | |
|
||
<artifactId>diameter-core-parent</artifactId> | ||
|
||
<name>Quarkus :: Diameter Core :: ${project.artifactId}</name> | ||
|
||
<developers> | ||
<developer> | ||
<id>ammendonca</id> | ||
<name>Alexandre Mendonça</name> | ||
<email>[email protected]</email> | ||
<organization>TeleStax</organization> | ||
<organizationUrl>http://www.telestax.com/</organizationUrl> | ||
<roles> | ||
<role>Project Lead</role> | ||
</roles> | ||
<timezone>0</timezone> | ||
</developer> | ||
<developer> | ||
<id>baranowb</id> | ||
<name>Bartosz Baranowski</name> | ||
<email>[email protected]</email> | ||
<organization>TeleStax</organization> | ||
<organizationUrl>http://www.telestax.com/</organizationUrl> | ||
<roles> | ||
<role>Developer</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<licenses> | ||
<license> | ||
<name>GNU Affero General Public License</name> | ||
<url>https://www.gnu.org/licenses/agpl-3.0.html</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<name>Quarkus :: JDiameter Core :: Parent</name> | ||
|
||
<modules> | ||
<module>jdiameter</module> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ROOT/pages/CommonContent/Conventions.adoc → docs/modules/ROOT/pages/Conventions.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...t-Installing_Configuring_and_Running.adoc → ...t-Installing_Configuring_and_Running.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include::../includes/attributes.adoc[] | ||
include::includes/attributes.adoc[] | ||
:sectnums!: | ||
|
||
[appendix] | ||
|
2 changes: 1 addition & 1 deletion
2
...les/ROOT/pages/CommonContent/Preface.adoc → docs/modules/ROOT/pages/Preface.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include::../includes/attributes.adoc[] | ||
include::includes/attributes.adoc[] | ||
:sectnums!: | ||
|
||
[preface] | ||
|
2 changes: 1 addition & 1 deletion
2
...es/CommonContent/Section-Conventions.adoc → ...dules/ROOT/pages/Section-Conventions.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pages/CommonContent/Section-Feedback.adoc → .../modules/ROOT/pages/Section-Feedback.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
..._the_JBOSS_HOME_Environment_Variable.adoc → ..._the_JBOSS_HOME_Environment_Variable.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include::../includes/attributes.adoc[] | ||
include::includes/attributes.adoc[] | ||
:sectnums!: | ||
|
||
[appendix] | ||
|
Oops, something went wrong.