Skip to content

Commit

Permalink
Update framework and Quarkus to the latest versions
Browse files Browse the repository at this point in the history
Including changes in CI
  • Loading branch information
fedinskiy authored and michalvavrik committed Oct 8, 2024
1 parent 16b472f commit c2f28f2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
distribution: 'temurin'
java-version: ${{ matrix.java }}
check-latest: true
- name: Build Quarkus 3.14
- name: Build Quarkus 3.15
run: |
git clone -b 3.14 https://github.com/quarkusio/quarkus.git && cd quarkus && ./mvnw -B --no-transfer-progress -s .github/mvn-settings.xml clean install -Dquickly -Dno-test-modules -Prelocations
git clone -b 3.15 https://github.com/quarkusio/quarkus.git && cd quarkus && ./mvnw -B --no-transfer-progress -s .github/mvn-settings.xml clean install -Dquickly -Dno-test-modules -Prelocations
- name: Tar Maven Repo
shell: bash
run: tar -I 'pigz -9' -cf maven-repo.tgz -C ~ .m2/repository
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
run: |
cat <<EOF > ./quarkus-dev-cli
#!/bin/bash
java -jar ~/.m2/repository/io/quarkus/quarkus-cli/3.14.999-SNAPSHOT/quarkus-cli-3.14.999-SNAPSHOT-runner.jar "\$@"
java -jar ~/.m2/repository/io/quarkus/quarkus-cli/3.15.999-SNAPSHOT/quarkus-cli-3.15.999-SNAPSHOT-runner.jar "\$@"
EOF
chmod +x ./quarkus-dev-cli
./quarkus-dev-cli version
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
run: |
cat <<EOF > ./quarkus-dev-cli
#!/bin/bash
java -jar ~/.m2/repository/io/quarkus/quarkus-cli/3.14.999-SNAPSHOT/quarkus-cli-3.14.999-SNAPSHOT-runner.jar "\$@"
java -jar ~/.m2/repository/io/quarkus/quarkus-cli/3.15.999-SNAPSHOT/quarkus-cli-3.15.999-SNAPSHOT-runner.jar "\$@"
EOF
chmod +x ./quarkus-dev-cli
./quarkus-dev-cli version
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<failsafe-plugin.version>3.4.0</failsafe-plugin.version>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>3.14.999-SNAPSHOT</quarkus.platform.version>
<quarkus.ide.version>3.14.0</quarkus.ide.version>
<quarkus.qe.framework.version>1.5.4</quarkus.qe.framework.version>
<quarkus.platform.version>3.15.999-SNAPSHOT</quarkus.platform.version>
<quarkus.ide.version>3.15.1</quarkus.ide.version>
<quarkus.qe.framework.version>1.5.5</quarkus.qe.framework.version>
<quarkus-qpid-jms.version>2.6.1</quarkus-qpid-jms.version>
<confluent.kafka-avro-serializer.version>7.5.1</confluent.kafka-avro-serializer.version>
<formatter-maven-plugin.version>2.24.1</formatter-maven-plugin.version>
Expand Down

0 comments on commit c2f28f2

Please sign in to comment.