This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch release/1.3.0 in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 13c89fbff2d6147db057b91a0bdad8b73e3319dc Author: Peter Palaga <[email protected]> AuthorDate: Fri Oct 16 17:53:25 2020 +0200 Enable Camel 3.6.0 staging repository temporarily --- .github/workflows/ci-build.yaml | 25 +++++++++++++++ settings-camel-3.6.0.xml | 69 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index c5f6b6d..2d6a07d 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -23,6 +23,7 @@ on: - master - camel-master - quarkus-master + - release/1.3.0 - "[0-9]+.[0-9]+.x" paths-ignore: - '**.adoc' @@ -70,6 +71,10 @@ jobs: if: github.ref == 'refs/heads/quarkus-master' || github.base_ref == 'quarkus-master' run: | echo '::set-env name=BRANCH_OPTIONS::-Poss-snapshots -Dquarkus.version=999-SNAPSHOT' + - name: Enable Camel 3.6.0 staging repo + if: github.ref == 'refs/heads/release/1.3.0' + run: | + echo '::set-env name=BRANCH_OPTIONS::-s '$(pwd)'/settings-camel-3.6.0.xml' - name: Set up JDK 11 uses: AdoptOpenJDK/install-jdk@v1 with: @@ -126,6 +131,10 @@ jobs: if: github.ref == 'refs/heads/quarkus-master' || github.base_ref == 'quarkus-master' run: | echo '::set-env name=BRANCH_OPTIONS::-Poss-snapshots -Dquarkus.version=999-SNAPSHOT' + - name: Enable Camel 3.6.0 staging repo + if: github.ref == 'refs/heads/release/1.3.0' + run: | + echo '::set-env name=BRANCH_OPTIONS::-s '$(pwd)'/settings-camel-3.6.0.xml' - name: Checkout uses: actions/checkout@v2 - name: Set up JDK 11 @@ -196,6 +205,10 @@ jobs: if: github.ref == 'refs/heads/quarkus-master' || github.base_ref == 'quarkus-master' run: | echo '::set-env name=BRANCH_OPTIONS::-Poss-snapshots -Dquarkus.version=999-SNAPSHOT' + - name: Enable Camel 3.6.0 staging repo + if: github.ref == 'refs/heads/release/1.3.0' + run: | + echo '::set-env name=BRANCH_OPTIONS::-s '$(pwd)'/settings-camel-3.6.0.xml' - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }} uses: AdoptOpenJDK/install-jdk@v1 @@ -249,6 +262,10 @@ jobs: if: github.ref == 'refs/heads/quarkus-master' || github.base_ref == 'quarkus-master' run: | echo '::set-env name=BRANCH_OPTIONS::-Poss-snapshots -Dquarkus.version=999-SNAPSHOT' + - name: Enable Camel 3.6.0 staging repo + if: github.ref == 'refs/heads/release/1.3.0' + run: | + echo '::set-env name=BRANCH_OPTIONS::-s '$(pwd)'/settings-camel-3.6.0.xml' - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }} uses: AdoptOpenJDK/install-jdk@v1 @@ -291,6 +308,10 @@ jobs: if: github.ref == 'refs/heads/quarkus-master' || github.base_ref == 'quarkus-master' run: | echo '::set-env name=BRANCH_OPTIONS::-Poss-snapshots -Dquarkus.version=999-SNAPSHOT' + - name: Enable Camel 3.6.0 staging repo + if: github.ref == 'refs/heads/release/1.3.0' + run: | + echo '::set-env name=BRANCH_OPTIONS::-s '$(pwd)'/settings-camel-3.6.0.xml' - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java }} uses: AdoptOpenJDK/install-jdk@v1 @@ -331,6 +352,10 @@ jobs: if: github.ref == 'refs/heads/quarkus-master' || github.base_ref == 'quarkus-master' run: | echo '::set-env name=BRANCH_OPTIONS::-Poss-snapshots -Dquarkus.version=999-SNAPSHOT' + - name: Enable Camel 3.6.0 staging repo + if: github.ref == 'refs/heads/release/1.3.0' + run: | + echo '::set-env name=BRANCH_OPTIONS::-s '$(pwd)'/settings-camel-3.6.0.xml' - name: Activate native tests on Java 11 if: matrix.java == '11' run: | diff --git a/settings-camel-3.6.0.xml b/settings-camel-3.6.0.xml new file mode 100644 index 0000000..eb284f9 --- /dev/null +++ b/settings-camel-3.6.0.xml @@ -0,0 +1,69 @@ +<?xml version="1.0"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 + http://maven.apache.org/xsd/settings-1.0.0.xsd"> + + + <profiles> + <profile> + <id>camel-3.6.0-staging-repo</id> + <repositories> + <repository> + <id>camel-3.6.0</id> + <releases> + <enabled>true</enabled> + <updatePolicy>always</updatePolicy> + <checksumPolicy>warn</checksumPolicy> + </releases> + <snapshots> + <enabled>false</enabled> + <updatePolicy>never</updatePolicy> + <checksumPolicy>fail</checksumPolicy> + </snapshots> + <url>https://repository.apache.org/content/repositories/orgapachecamel-1254</url> + <layout>default</layout> + </repository> + </repositories> + <pluginRepositories> + <pluginRepository> + <id>camel-3.6.0</id> + <releases> + <enabled>true</enabled> + <updatePolicy>always</updatePolicy> + <checksumPolicy>warn</checksumPolicy> + </releases> + <snapshots> + <enabled>false</enabled> + <updatePolicy>never</updatePolicy> + <checksumPolicy>fail</checksumPolicy> + </snapshots> + <url>https://repository.apache.org/content/repositories/orgapachecamel-1254</url> + <layout>default</layout> + </pluginRepository> + </pluginRepositories> + </profile> + + </profiles> + <activeProfiles> + <activeProfile>camel-3.6.0-staging-repo</activeProfile> + </activeProfiles> + +</settings>
