This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
commit 7af0ec09d3e07119d883604bc5342ac72c4f876f Author: Luca Burgazzoli <[email protected]> AuthorDate: Tue Dec 15 07:16:19 2020 +0100 Update to camel-quarkus 1.5.0 --- .github/workflows/ci-build-camel-master.yaml | 12 ++++++------ pom.xml | 24 +++++++++++++++++++++--- 2 files changed, 27 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-build-camel-master.yaml b/.github/workflows/ci-build-camel-master.yaml index 467449d..a377d27 100644 --- a/.github/workflows/ci-build-camel-master.yaml +++ b/.github/workflows/ci-build-camel-master.yaml @@ -54,12 +54,12 @@ jobs: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 -# - name: Build camel (master) -# run: | -# git clone --depth 1 --branch master https://github.com/apache/camel.git \ -# && cd camel \ -# && echo "Current Camel commit:" $(git rev-parse HEAD) \ -# && ./mvnw ${MAVEN_ARGS} clean install -Pfastinstall + - name: Build camel (master) + run: | + git clone --depth 1 --branch master https://github.com/apache/camel.git \ + && cd camel \ + && echo "Current Camel commit:" $(git rev-parse HEAD) \ + && ./mvnw ${MAVEN_ARGS} clean install -Pfastinstall - name: Build camel-quarkus (camel-master) run: | git clone --depth 1 --branch camel-master https://github.com/apache/camel-quarkus.git \ diff --git a/pom.xml b/pom.xml index 57e7eda..0d52376 100644 --- a/pom.xml +++ b/pom.xml @@ -41,7 +41,7 @@ <camel-version>3.7.0</camel-version> <!-- quarkus --> - <camel-quarkus-version>1.5.0-SNAPSHOT</camel-quarkus-version> + <camel-quarkus-version>1.5.0</camel-quarkus-version> <graalvm-version>20.2.0</graalvm-version> <quarkus-version>1.10.3.Final</quarkus-version> @@ -340,9 +340,18 @@ <enabled>false</enabled> </snapshots> <url>https://repository.apache.org/content/repositories/orgapachecamel-1263</url> - <layout>default</layout> </repository> <repository> + <id>camel-quarkus-1.5.0</id> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + <url>https://repository.apache.org/content/repositories/orgapachecamel-1266</url> + </repository> + <repository> <id>apache.snapshots</id> <url>https://repository.apache.org/snapshots/</url> <name>Apache Snapshot Repo</name> @@ -365,9 +374,18 @@ <enabled>false</enabled> </snapshots> <url>https://repository.apache.org/content/repositories/orgapachecamel-1263</url> - <layout>default</layout> </pluginRepository> <pluginRepository> + <id>camel-quarkus-1.5.0</id> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + <url>https://repository.apache.org/content/repositories/orgapachecamel-1266</url> + </pluginRepository> + <pluginRepository> <id>apache.snapshots</id> <url>https://repository.apache.org/snapshots/</url> <snapshots>
