diff --git a/.github/workflows/maven-checks.yml b/.github/workflows/maven-checks.yml index 2295c413bef7b..188c84a3eb0d7 100644 --- a/.github/workflows/maven-checks.yml +++ b/.github/workflows/maven-checks.yml @@ -51,7 +51,7 @@ jobs: uses: "actions/upload-artifact@v4" with: name: "presto-server" - path: "presto-server/target/presto-server-0.293.tar.gz" + path: "presto-server/target/presto-server-*.tar.gz" if-no-files-found: "error" retention-days: 1 - name: "Upload presto-cli" @@ -59,7 +59,7 @@ jobs: uses: "actions/upload-artifact@v4" with: name: "presto-cli" - path: "presto-cli/target/presto-cli-0.293-executable.jar" + path: "presto-cli/target/presto-cli-*-executable.jar" if-no-files-found: "error" retention-days: 1 - name: "Clean Maven output" @@ -100,12 +100,20 @@ jobs: images: "ghcr.io/${{github.repository}}/coordinator" tags: "type=raw,value=dev" + - name: Get presto release version + id: get-version + run: | + PRESTO_DEVELOP_VERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate \ + -Dexpression=project.version -q -ntp -DforceStdout | tail -n 1) + echo "PRESTO_DEVELOP_VERSION=$PRESTO_DEVELOP_VERSION" >> $GITHUB_ENV + echo "PRESTO_DEVELOP_VERSION=$PRESTO_DEVELOP_VERSION" + - name: "Build and push" uses: "docker/build-push-action@v6" with: build-args: |- JMX_PROMETHEUS_JAVA_AGENT_VERSION=0.20.0 - PRESTO_VERSION=0.293 + PRESTO_VERSION=${{ env.PRESTO_DEVELOP_VERSION }} context: "./docker" file: "./docker/Dockerfile" push: >- diff --git a/.github/workflows/presto-release-prepare.yml b/.github/workflows/presto-release-prepare.yml new file mode 100644 index 0000000000000..34d3bd59bccfb --- /dev/null +++ b/.github/workflows/presto-release-prepare.yml @@ -0,0 +1,107 @@ +name: YScope Presto - CLP Connector Stable Release - Prepare + +on: + workflow_dispatch: + inputs: + prepare_release: + description: 'Prepare release branch and tag' + type: boolean + default: true + required: false + +env: + JAVA_VERSION: ${{ vars.JAVA_VERSION || '17.0.13' }} + JAVA_DISTRIBUTION: ${{ vars.JAVA_DISTRIBUTION || 'temurin' }} + MAVEN_OPTS: ${{ vars.MAVEN_OPTS }} + GIT_CI_USER: ${{ github.actor }} + GIT_CI_EMAIL: "${{ github.actor }}@users.noreply.github.com" + +jobs: + prepare-release-branch: + if: ${{ inputs.prepare_release }} + runs-on: ubuntu-latest + environment: release + permissions: + contents: write + pull-requests: write + + steps: + - name: Checkout presto source + uses: actions/checkout@v4 + with: + show-progress: false + fetch-depth: 5 + + - name: Ensure checkout latest code + run: | + git fetch origin ${{ github.ref_name }} + if [ "$(git rev-parse HEAD)" != "$(git rev-parse origin/${{ github.ref_name }})" ]; then + echo "Branch ${{ github.ref_name }} has new commits. Resetting to latest." + git reset --hard origin/${{ github.ref_name }} + else + echo "Branch ${{ github.ref_name }} is already up to date." + fi + + - name: Set up JDK ${{ env.JAVA_DISTRIBUTION }}/${{ env.JAVA_VERSION }} + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVA_VERSION }} + distribution: ${{ env.JAVA_DISTRIBUTION }} + + - name: Configure git + run: | + git config --global --add safe.directory ${{github.workspace}} + git config --global user.email "${{ env.GIT_CI_EMAIL }}" + git config --global user.name "${{ env.GIT_CI_USER }}" + git config --global alias.ls 'log --pretty=format:"%cd %h %ce: %s" --date=short --no-merges' + git config pull.rebase false + + - name: Set presto release version + run: | + unset MAVEN_CONFIG && ./mvnw versions:set -DremoveSnapshot -ntp + + - name: Get presto release version + id: get-version + run: | + PRESTO_RELEASE_VERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate \ + -Dexpression=project.version -q -ntp -DforceStdout | tail -n 1) + echo "PRESTO_RELEASE_VERSION=$PRESTO_RELEASE_VERSION" >> $GITHUB_ENV + echo "PRESTO_RELEASE_VERSION=$PRESTO_RELEASE_VERSION" + + - name: Prepare release tag and commits and push the preparation PR + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + echo "In case this job failed, please delete the branch release-preparation-${{ env.PRESTO_RELEASE_VERSION }}, and re-run the job" + git reset --hard + git switch -c release-preparation-${{ env.PRESTO_RELEASE_VERSION }} + unset MAVEN_CONFIG && ./mvnw release:prepare --batch-mode \ + -DskipTests \ + -DautoVersionSubmodules \ + -DdevelopmentVersion=${{ env.PRESTO_RELEASE_VERSION }} \ + -DreleaseVersion=${{ env.PRESTO_RELEASE_VERSION }} + grep -m 2 "" pom.xml + echo "Pushing branch release-preparation-${{ env.PRESTO_RELEASE_VERSION }}" + git ls -5 + git push origin release-preparation-${{ env.PRESTO_RELEASE_VERSION }} + echo "Creating PR for branch release-preparation-${{ env.PRESTO_RELEASE_VERSION }}" + NEXT_PRESTO_RELEASE_VERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate \ + -Dexpression=project.version -q -ntp -DforceStdout | tail -n 1) + gh pr create \ + --base release-0.293-clp-connector \ + --head "release-preparation-${{ env.PRESTO_RELEASE_VERSION }}" \ + --title "feat: Bump version to \`$NEXT_PRESTO_RELEASE_VERSION\` for next development cycle." \ + --body "Automated pull request to bump the project version for the next development cycle." + + - name: Push release tag, and branch + run: | + echo "In case this job failed, please delete the tag ${{ env.PRESTO_RELEASE_VERSION }} and the branch release-${{ env.PRESTO_RELEASE_VERSION }}, and re-run the job" + git checkout ${{ env.PRESTO_RELEASE_VERSION }} + git switch -c release-${{ env.PRESTO_RELEASE_VERSION }} + echo "Pushing release branch release-${{ env.PRESTO_RELEASE_VERSION }} and tag ${{ env.PRESTO_RELEASE_VERSION }}" + + echo "commits on release-${{ env.PRESTO_RELEASE_VERSION }} branch" + git ls -4 + git push origin release-${{ env.PRESTO_RELEASE_VERSION }} --tags + echo -e "\nPushed release tag to: ${{ github.server_url }}/${{ github.repository }}/releases/tag/${{ env.PRESTO_RELEASE_VERSION }}" + echo "Pushed release branch to: ${{ github.server_url }}/${{ github.repository }}/tree/release-${{ env.PRESTO_RELEASE_VERSION }}" diff --git a/.github/workflows/presto-release-publish.yml b/.github/workflows/presto-release-publish.yml new file mode 100644 index 0000000000000..48ffaf8c17679 --- /dev/null +++ b/.github/workflows/presto-release-publish.yml @@ -0,0 +1,318 @@ +name: YScope Presto - CLP Connector Stable Release - Publish + +on: + workflow_dispatch: + inputs: + RELEASE_VERSION: + description: 'Release version (e.g., 0.292)' + required: true + publish_release_tag: + description: 'Publish release tag' + type: boolean + default: true + required: false + publish_maven: + description: 'Publish maven artifacts' + type: boolean + default: true + required: false + publish_github_release: + description: 'Publish executable jars to github release' + type: boolean + default: true + required: false + publish_image: + description: 'Publish presto docker image' + type: boolean + default: true + required: false + publish_native_image: + description: 'Publish prestissimo docker image' + type: boolean + default: true + required: false + publish_docs: + description: 'Publish docs' + type: boolean + default: true + required: false + +env: + JAVA_VERSION: ${{ vars.JAVA_VERSION || '17' }} + JAVA_DISTRIBUTION: ${{ vars.JAVA_DISTRIBUTION || 'temurin' }} + MAVEN_OPTS: ${{ vars.MAVEN_OPTS }} + DOCKER_REPO: ${{ github.repository }} + ORG_NAME: ${{ github.repository_owner }} + IMAGE_NAME: presto-native + RELEASE_BRANCH: release-${{ inputs.RELEASE_VERSION }} + RELEASE_TAG: ${{ inputs.RELEASE_VERSION }} + GIT_CI_USER: ${{ github.actor }} + GIT_CI_EMAIL: "${{ github.actor }}@users.noreply.github.com" + MAVEN_AUTO_PUBLISH: ${{ vars.MAVEN_AUTO_PUBLISH || 'true' }} + +jobs: + publish-release-tag: + if: github.event.inputs.publish_release_tag == 'true' + runs-on: ubuntu-latest + environment: release + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + ref: ${{ env.RELEASE_BRANCH }} + token: ${{ secrets.GITHUB_TOKEN }} + fetch-depth: 0 + fetch-tags: true + show-progress: false + + - name: Configure Git + run: | + git config --global user.email "${{ env.GIT_CI_EMAIL }}" + git config --global user.name "${{ env.GIT_CI_USER }}" + git config pull.rebase false + + - name: Delete existing release tag + run: | + git push --delete origin ${{ env.RELEASE_TAG }} || true + git tag -d ${{ env.RELEASE_TAG }} || true + + - name: Create new release tag + run: | + git tag -a ${{ env.RELEASE_TAG }} -m "release ${{ env.RELEASE_TAG }}" + git push origin ${{ env.RELEASE_BRANCH }} --tags + + publish-maven-artifacts: + needs: publish-release-tag + if: | + (!failure() &&!cancelled()) && ( + github.event.inputs.publish_maven == 'true' || + github.event.inputs.publish_image == 'true' || + github.event.inputs.publish_docs == 'true' || + github.event.inputs.publish_github_release == 'true' + ) + runs-on: ubuntu-latest + environment: release + timeout-minutes: 60 + + steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@v1.3.1 + with: + tool-cache: false + large-packages: false + docker-images: false + swap-storage: false + + - name: Set up JDK ${{ env.JAVA_DISTRIBUTION }}/${{ env.JAVA_VERSION }} + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVA_VERSION }} + distribution: ${{ env.JAVA_DISTRIBUTION }} + overwrite-settings: true + + - name: Install dependencies + run: | + df -h + sudo apt-get update + sudo apt-get install -y build-essential git gpg python3 python3-venv + + - name: Checkout code + uses: actions/checkout@v4 + with: + ref: ${{ env.RELEASE_TAG }} + token: ${{ secrets.GITHUB_TOKEN }} + fetch-depth: 0 + fetch-tags: true + + - name: Configure Git + run: | + git config --global user.email "${{ env.GIT_CI_EMAIL }}" + git config --global user.name "${{ env.GIT_CI_USER }}" + git config pull.rebase false + + - name: Build release artifacts + run: ./mvnw clean install -DskipTests + + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: presto-artifacts-${{ env.RELEASE_TAG }} + retention-days: 7 + path: | + presto-server/target/presto-server-*.tar.gz + presto-docs/target/presto-docs-*.zip + presto-cli/target/presto-cli-*-executable.jar + presto-benchmark-driver/target/presto-benchmark-driver-*-executable.jar + presto-testing-server-launcher/target/presto-testing-server-launcher-*-executable.jar + + publish-github-release: + needs: publish-maven-artifacts + if: (!failure() && !cancelled()) && github.event.inputs.publish_github_release == 'true' + runs-on: ubuntu-latest + environment: release + timeout-minutes: 150 + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: ${{ env.RELEASE_TAG}} + + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: presto-artifacts-${{ env.RELEASE_TAG }} + path: ./ + + - name: Create github release + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ env.RELEASE_TAG }} + name: YScope Presto - CLP Connector ${{ env.RELEASE_TAG }} + token: ${{ secrets.GITHUB_TOKEN }} + body: | + Release tag: ${{ env.RELEASE_TAG }} + files: | + ./presto-cli/target/presto-cli-*-executable.jar + ./presto-benchmark-driver/target/presto-benchmark-driver-*-executable.jar + ./presto-testing-server-launcher/target/presto-testing-server-launcher-*-executable.jar + + publish-docker-image: + needs: publish-maven-artifacts + if: (!failure() && !cancelled()) && github.event.inputs.publish_image == 'true' + runs-on: ubuntu-latest + environment: release + timeout-minutes: 150 + permissions: + packages: write + contents: read + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: ${{ env.RELEASE_TAG}} + + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + name: presto-artifacts-${{ env.RELEASE_TAG }} + path: ./ + + - name: "Login to image registry" + uses: "docker/login-action@v3" + with: + registry: "ghcr.io" + username: "${{github.actor}}" + password: "${{secrets.GITHUB_TOKEN}}" + + - name: Move artifacts to docker directory + run: | + mv ./presto-server/target/presto-server-*.tar.gz docker/ + mv ./presto-cli/target/presto-cli-*-executable.jar docker/ + + - name: "Set up container image metadata" + id: "meta" + uses: "docker/metadata-action@v5" + with: + images: "ghcr.io/${{github.repository}}/coordinator" + tags: "type=raw,value=${{ env.RELEASE_TAG }}" + + - name: Build docker image and publish + uses: "docker/build-push-action@v6" + with: + build-args: |- + JMX_PROMETHEUS_JAVA_AGENT_VERSION=0.20.0 + PRESTO_VERSION=${{ env.RELEASE_TAG }} + context: "./docker" + file: "./docker/Dockerfile" + push: >- + ${{ github.ref == format('refs/heads/{0}', env.RELEASE_BRANCH) }} + tags: "${{steps.meta.outputs.tags}}" + labels: "${{steps.meta.outputs.labels}}" + + publish-native-image: + needs: publish-release-tag + if: (!failure() && !cancelled()) && github.event.inputs.publish_native_image == 'true' + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + attestations: write + id-token: write + environment: release + timeout-minutes: 300 + steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@v1.3.1 + with: + tool-cache: false + large-packages: false + docker-images: false + swap-storage: false + + - name: Checkout + uses: actions/checkout@v4 + with: + ref: ${{ env.RELEASE_TAG }} + submodules: true + + - name: Initialize Prestissimo submodules + run: | + df -h + cd presto-native-execution && make submodules + echo "COMMIT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV + + - name: "Login to image registry" + uses: "docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772" + with: + registry: "ghcr.io" + username: "${{github.actor}}" + password: "${{secrets.GITHUB_TOKEN}}" + + - name: "Set up metadata for dependency image" + id: "metadata-deps-image" + uses: "docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804" + with: + images: "ghcr.io/${{github.repository}}/prestissimo-worker-dev-env" + tags: "type=raw,value=${{ env.RELEASE_TAG }}" + + - name: "Build and push dependency image" + uses: "docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4" + with: + context: "./presto-native-execution" + file: "./presto-native-execution/scripts/dockerfiles/ubuntu-22.04-dependency.dockerfile" + push: >- + ${{ github.ref == format('refs/heads/{0}', env.RELEASE_BRANCH) }} + tags: "${{steps.metadata-deps-image.outputs.tags}}" + labels: "${{steps.metadata-deps-image.outputs.labels}}" + + - name: "Set up metadata for runtime image" + id: "metadata-runtime-image" + uses: "docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804" + with: + images: "ghcr.io/${{github.repository}}/prestissimo-worker" + tags: "type=raw,value=${{ env.RELEASE_TAG }}" + + - name: "Get number of cores" + id: "get-cores" + run: |- + echo "num_cores=$(nproc)" >> $GITHUB_OUTPUT + + - name: "Build and push runtime image" + uses: "docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4" + with: + build-args: |- + BASE_IMAGE=ubuntu:22.04 + DEPENDENCY_IMAGE=${{steps.metadata-deps-image.outputs.tags}} + EXTRA_CMAKE_FLAGS=-DPRESTO_ENABLE_TESTING=OFF \ + -DPRESTO_ENABLE_PARQUET=ON \ + -DPRESTO_ENABLE_S3=ON + NUM_THREADS=${{steps.get-cores.outputs.num_cores}} + OSNAME=ubuntu + context: "./presto-native-execution" + file: "./presto-native-execution/scripts/dockerfiles/prestissimo-runtime.dockerfile" + push: >- + ${{ github.ref == format('refs/heads/{0}', env.RELEASE_BRANCH) }} + tags: "${{steps.metadata-runtime-image.outputs.tags}}" + labels: "${{steps.metadata-runtime-image.outputs.labels}}" diff --git a/pom.xml b/pom.xml index 57dc0439a8401..9adbefce96871 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT pom presto-root @@ -28,9 +28,9 @@ - scm:git:git://github.com/prestodb/presto.git - https://github.com/prestodb/presto - 0.293 + scm:git:git://github.com/y-scope/presto.git + https://github.com/y-scope/presto + HEAD diff --git a/presto-accumulo/pom.xml b/presto-accumulo/pom.xml index 39d0e1b5c7d23..441fcc7c29fd7 100644 --- a/presto-accumulo/pom.xml +++ b/presto-accumulo/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-accumulo diff --git a/presto-analyzer/pom.xml b/presto-analyzer/pom.xml index 1155e1aee43f0..4ba5453867f22 100644 --- a/presto-analyzer/pom.xml +++ b/presto-analyzer/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-analyzer diff --git a/presto-atop/pom.xml b/presto-atop/pom.xml index 614294b443447..817125355b59f 100644 --- a/presto-atop/pom.xml +++ b/presto-atop/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-atop diff --git a/presto-base-arrow-flight/pom.xml b/presto-base-arrow-flight/pom.xml index 9428c4d767ce4..0d3e68a5d903a 100644 --- a/presto-base-arrow-flight/pom.xml +++ b/presto-base-arrow-flight/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-base-arrow-flight diff --git a/presto-base-jdbc/pom.xml b/presto-base-jdbc/pom.xml index ccfb62a26b53d..044f562f541fa 100644 --- a/presto-base-jdbc/pom.xml +++ b/presto-base-jdbc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-base-jdbc diff --git a/presto-benchmark-driver/pom.xml b/presto-benchmark-driver/pom.xml index 964510e12d51d..d8a38ff8cfb2b 100644 --- a/presto-benchmark-driver/pom.xml +++ b/presto-benchmark-driver/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-benchmark-driver diff --git a/presto-benchmark-runner/pom.xml b/presto-benchmark-runner/pom.xml index 63343a5251a2d..97c74b6175407 100644 --- a/presto-benchmark-runner/pom.xml +++ b/presto-benchmark-runner/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-benchmark-runner diff --git a/presto-benchmark/pom.xml b/presto-benchmark/pom.xml index 8d15ed8f76347..f766b20f1787f 100644 --- a/presto-benchmark/pom.xml +++ b/presto-benchmark/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-benchmark diff --git a/presto-benchto-benchmarks/pom.xml b/presto-benchto-benchmarks/pom.xml index 7010115890d13..96a5c228b88d8 100644 --- a/presto-benchto-benchmarks/pom.xml +++ b/presto-benchto-benchmarks/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-benchto-benchmarks diff --git a/presto-bigquery/pom.xml b/presto-bigquery/pom.xml index ba846fdd82244..04a7cf32ede2f 100644 --- a/presto-bigquery/pom.xml +++ b/presto-bigquery/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-bigquery diff --git a/presto-blackhole/pom.xml b/presto-blackhole/pom.xml index d6d30f2278f11..efb9be0adbb70 100644 --- a/presto-blackhole/pom.xml +++ b/presto-blackhole/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-blackhole diff --git a/presto-bytecode/pom.xml b/presto-bytecode/pom.xml index 9601020ae77c8..43be56817673b 100644 --- a/presto-bytecode/pom.xml +++ b/presto-bytecode/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-bytecode diff --git a/presto-cache/pom.xml b/presto-cache/pom.xml index 31ccb5b946c68..c2372ec42a7ed 100644 --- a/presto-cache/pom.xml +++ b/presto-cache/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-cache diff --git a/presto-cassandra/pom.xml b/presto-cassandra/pom.xml index 1b5f1cdf95d8b..4f86f1f48edc6 100644 --- a/presto-cassandra/pom.xml +++ b/presto-cassandra/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-cassandra diff --git a/presto-cli/pom.xml b/presto-cli/pom.xml index fbce3e3fc30ac..0086da1ae8e14 100644 --- a/presto-cli/pom.xml +++ b/presto-cli/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-cli diff --git a/presto-clickhouse/pom.xml b/presto-clickhouse/pom.xml index 36968b6cd7251..1554170d6fead 100755 --- a/presto-clickhouse/pom.xml +++ b/presto-clickhouse/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-clickhouse diff --git a/presto-client/pom.xml b/presto-client/pom.xml index 7662acd12632b..b4772a311c245 100644 --- a/presto-client/pom.xml +++ b/presto-client/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-client diff --git a/presto-clp/pom.xml b/presto-clp/pom.xml index d13b59968aff5..ca19186fb8e41 100644 --- a/presto-clp/pom.xml +++ b/presto-clp/pom.xml @@ -1,12 +1,11 @@ - + 4.0.0 com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-clp diff --git a/presto-cluster-ttl-providers/pom.xml b/presto-cluster-ttl-providers/pom.xml index edb2107feeaef..94a7331eab630 100644 --- a/presto-cluster-ttl-providers/pom.xml +++ b/presto-cluster-ttl-providers/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-common/pom.xml b/presto-common/pom.xml index 6f1a57adf6535..9b63f0d45bb7f 100644 --- a/presto-common/pom.xml +++ b/presto-common/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-common diff --git a/presto-delta/pom.xml b/presto-delta/pom.xml index 68f5e3c2dd5d9..d1062470f6293 100644 --- a/presto-delta/pom.xml +++ b/presto-delta/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-delta diff --git a/presto-docs/pom.xml b/presto-docs/pom.xml index e425ed23193c6..27cb5de84d894 100644 --- a/presto-docs/pom.xml +++ b/presto-docs/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-docs diff --git a/presto-druid/pom.xml b/presto-druid/pom.xml index f940d1cfd4acc..31220a1c210bd 100644 --- a/presto-druid/pom.xml +++ b/presto-druid/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-druid diff --git a/presto-elasticsearch/pom.xml b/presto-elasticsearch/pom.xml index 23087f7310adc..1e92806b2b848 100644 --- a/presto-elasticsearch/pom.xml +++ b/presto-elasticsearch/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-elasticsearch Presto - Elasticsearch Connector diff --git a/presto-example-http/pom.xml b/presto-example-http/pom.xml index a2c847a6abf87..b77e46eeaf979 100644 --- a/presto-example-http/pom.xml +++ b/presto-example-http/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-example-http diff --git a/presto-expressions/pom.xml b/presto-expressions/pom.xml index 22c0b8203ecd5..c7092879d1f17 100644 --- a/presto-expressions/pom.xml +++ b/presto-expressions/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-expressions diff --git a/presto-function-namespace-managers-common/pom.xml b/presto-function-namespace-managers-common/pom.xml index c9d58efd0f56c..22b017c06ccce 100644 --- a/presto-function-namespace-managers-common/pom.xml +++ b/presto-function-namespace-managers-common/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT diff --git a/presto-function-namespace-managers/pom.xml b/presto-function-namespace-managers/pom.xml index ad7a4887e20fe..e1d58fe8cfcc3 100644 --- a/presto-function-namespace-managers/pom.xml +++ b/presto-function-namespace-managers/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-function-server/pom.xml b/presto-function-server/pom.xml index 55ca029d7923a..4d645695a29ee 100644 --- a/presto-function-server/pom.xml +++ b/presto-function-server/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-function-server diff --git a/presto-geospatial-toolkit/pom.xml b/presto-geospatial-toolkit/pom.xml index 791da798a1510..9fd3137bc121e 100644 --- a/presto-geospatial-toolkit/pom.xml +++ b/presto-geospatial-toolkit/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-geospatial-toolkit diff --git a/presto-google-sheets/pom.xml b/presto-google-sheets/pom.xml index d9c489c5220bb..bbcd205432322 100644 --- a/presto-google-sheets/pom.xml +++ b/presto-google-sheets/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-google-sheets diff --git a/presto-grpc-api/pom.xml b/presto-grpc-api/pom.xml index 63a50b6b14546..48ba526cf75d9 100644 --- a/presto-grpc-api/pom.xml +++ b/presto-grpc-api/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-grpc-testing-udf-server/pom.xml b/presto-grpc-testing-udf-server/pom.xml index 88f00f0faf648..51bcdd8b9d131 100644 --- a/presto-grpc-testing-udf-server/pom.xml +++ b/presto-grpc-testing-udf-server/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-hana/pom.xml b/presto-hana/pom.xml index c9f2e718886ff..712858dd3fb61 100644 --- a/presto-hana/pom.xml +++ b/presto-hana/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-hana diff --git a/presto-hdfs-core/pom.xml b/presto-hdfs-core/pom.xml index 248e48d42aa83..b554c37524de3 100644 --- a/presto-hdfs-core/pom.xml +++ b/presto-hdfs-core/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT diff --git a/presto-hive-common/pom.xml b/presto-hive-common/pom.xml index e0c4aa6111838..1ffa9d3b63bcb 100644 --- a/presto-hive-common/pom.xml +++ b/presto-hive-common/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT diff --git a/presto-hive-function-namespace/pom.xml b/presto-hive-function-namespace/pom.xml index 404048ee5a636..5e3e6166153db 100644 --- a/presto-hive-function-namespace/pom.xml +++ b/presto-hive-function-namespace/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-hive-function-namespace diff --git a/presto-hive-hadoop2/pom.xml b/presto-hive-hadoop2/pom.xml index 3fbc5bf164705..988b8b43ed635 100644 --- a/presto-hive-hadoop2/pom.xml +++ b/presto-hive-hadoop2/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-hive-hadoop2 diff --git a/presto-hive-metastore/pom.xml b/presto-hive-metastore/pom.xml index 85ca1695fe5e9..9cbba48dd95de 100644 --- a/presto-hive-metastore/pom.xml +++ b/presto-hive-metastore/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-hive-metastore diff --git a/presto-hive/pom.xml b/presto-hive/pom.xml index e744a031789f2..82b665143c70c 100644 --- a/presto-hive/pom.xml +++ b/presto-hive/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-hive diff --git a/presto-hudi/pom.xml b/presto-hudi/pom.xml index f7dd5d40df8de..024009a00c043 100644 --- a/presto-hudi/pom.xml +++ b/presto-hudi/pom.xml @@ -4,7 +4,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-hudi Presto - Hudi Connector diff --git a/presto-i18n-functions/pom.xml b/presto-i18n-functions/pom.xml index 405a83ada0775..9b752b07e2fa2 100644 --- a/presto-i18n-functions/pom.xml +++ b/presto-i18n-functions/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-i18n-functions diff --git a/presto-iceberg/pom.xml b/presto-iceberg/pom.xml index 7ada5aed5695a..9c1fd619e6a6a 100644 --- a/presto-iceberg/pom.xml +++ b/presto-iceberg/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-iceberg Presto - Iceberg Connector diff --git a/presto-jdbc/pom.xml b/presto-jdbc/pom.xml index aaa53ad254121..8fd40772b1287 100644 --- a/presto-jdbc/pom.xml +++ b/presto-jdbc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-jdbc diff --git a/presto-jmx/pom.xml b/presto-jmx/pom.xml index 291bceea12690..f8b865f4b4c7e 100644 --- a/presto-jmx/pom.xml +++ b/presto-jmx/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-jmx diff --git a/presto-kafka/pom.xml b/presto-kafka/pom.xml index b0cc635db0fbd..02e2e17ed1f7b 100644 --- a/presto-kafka/pom.xml +++ b/presto-kafka/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-kafka diff --git a/presto-kudu/pom.xml b/presto-kudu/pom.xml index ccf763b019051..60f62ae9387cd 100644 --- a/presto-kudu/pom.xml +++ b/presto-kudu/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-kudu diff --git a/presto-lark-sheets/pom.xml b/presto-lark-sheets/pom.xml index dbb68352328f3..331c1bbcd73f1 100644 --- a/presto-lark-sheets/pom.xml +++ b/presto-lark-sheets/pom.xml @@ -3,7 +3,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-local-file/pom.xml b/presto-local-file/pom.xml index e0a4c50993ddc..35c55ab42c40e 100644 --- a/presto-local-file/pom.xml +++ b/presto-local-file/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-local-file diff --git a/presto-main-base/pom.xml b/presto-main-base/pom.xml index b1f972ce7a10f..0310922681543 100644 --- a/presto-main-base/pom.xml +++ b/presto-main-base/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-main-base diff --git a/presto-main/pom.xml b/presto-main/pom.xml index afa7c07504b83..26f1b3a2c9ab1 100644 --- a/presto-main/pom.xml +++ b/presto-main/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-main diff --git a/presto-matching/pom.xml b/presto-matching/pom.xml index f4e8b0b44b0ef..6cc2ed1efb479 100644 --- a/presto-matching/pom.xml +++ b/presto-matching/pom.xml @@ -18,7 +18,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-matching diff --git a/presto-memory-context/pom.xml b/presto-memory-context/pom.xml index 0455c8b08a6dc..5648a8a388226 100644 --- a/presto-memory-context/pom.xml +++ b/presto-memory-context/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-memory-context diff --git a/presto-memory/pom.xml b/presto-memory/pom.xml index 74f9b930218b0..76a4a3c7ac494 100644 --- a/presto-memory/pom.xml +++ b/presto-memory/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-memory diff --git a/presto-ml/pom.xml b/presto-ml/pom.xml index 6f4bd6dcbc958..29e16056c72d0 100644 --- a/presto-ml/pom.xml +++ b/presto-ml/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-ml diff --git a/presto-mongodb/pom.xml b/presto-mongodb/pom.xml index 11d5ddf24ea19..f8855201c41a3 100644 --- a/presto-mongodb/pom.xml +++ b/presto-mongodb/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-mongodb diff --git a/presto-mysql/pom.xml b/presto-mysql/pom.xml index 6c3ba6c74835a..b1393c238be6e 100644 --- a/presto-mysql/pom.xml +++ b/presto-mysql/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-mysql diff --git a/presto-native-execution/pom.xml b/presto-native-execution/pom.xml index 200ffa6834afc..dcb920ce23cf5 100644 --- a/presto-native-execution/pom.xml +++ b/presto-native-execution/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-native-execution diff --git a/presto-native-sidecar-plugin/pom.xml b/presto-native-sidecar-plugin/pom.xml index 1cd0c62516946..2db66be7566f0 100644 --- a/presto-native-sidecar-plugin/pom.xml +++ b/presto-native-sidecar-plugin/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-native-sidecar-plugin @@ -158,7 +158,7 @@ presto-tests test test-jar - 0.293 + 0.293.0-yscope-SNAPSHOT @@ -172,7 +172,7 @@ presto-native-execution test test-jar - 0.293 + 0.293.0-yscope-SNAPSHOT diff --git a/presto-native-tests/pom.xml b/presto-native-tests/pom.xml index 5767562a754f0..ebae69a4ef8a3 100644 --- a/presto-native-tests/pom.xml +++ b/presto-native-tests/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-native-tests diff --git a/presto-node-ttl-fetchers/pom.xml b/presto-node-ttl-fetchers/pom.xml index 25a201907fb14..27fbe4cc0b282 100644 --- a/presto-node-ttl-fetchers/pom.xml +++ b/presto-node-ttl-fetchers/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-node-ttl-fetchers diff --git a/presto-open-telemetry/pom.xml b/presto-open-telemetry/pom.xml index 7fce1863de029..65cdb041eef71 100644 --- a/presto-open-telemetry/pom.xml +++ b/presto-open-telemetry/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-open-telemetry diff --git a/presto-openapi/pom.xml b/presto-openapi/pom.xml index 4c765848c142a..d5e32980dfe6c 100644 --- a/presto-openapi/pom.xml +++ b/presto-openapi/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-openapi diff --git a/presto-oracle/pom.xml b/presto-oracle/pom.xml index 4eff8cff5688a..45b8d2ff138b9 100644 --- a/presto-oracle/pom.xml +++ b/presto-oracle/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-oracle diff --git a/presto-orc/pom.xml b/presto-orc/pom.xml index 1df1d5f50a6c4..98a3ac7cf441e 100644 --- a/presto-orc/pom.xml +++ b/presto-orc/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-orc diff --git a/presto-parquet/pom.xml b/presto-parquet/pom.xml index acb6da317c80f..7569c4fa64869 100644 --- a/presto-parquet/pom.xml +++ b/presto-parquet/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-parquet diff --git a/presto-parser/pom.xml b/presto-parser/pom.xml index fc13bc48bc978..1a5498e48874f 100644 --- a/presto-parser/pom.xml +++ b/presto-parser/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-parser diff --git a/presto-password-authenticators/pom.xml b/presto-password-authenticators/pom.xml index 698a2987e7470..4cb40b775793c 100644 --- a/presto-password-authenticators/pom.xml +++ b/presto-password-authenticators/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-password-authenticators diff --git a/presto-pinot-toolkit/pom.xml b/presto-pinot-toolkit/pom.xml index 2d0c22159e559..73a48846036d3 100644 --- a/presto-pinot-toolkit/pom.xml +++ b/presto-pinot-toolkit/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-pinot-toolkit diff --git a/presto-pinot/pom.xml b/presto-pinot/pom.xml index 9a112bd6bfba4..a24f164c99225 100644 --- a/presto-pinot/pom.xml +++ b/presto-pinot/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-pinot diff --git a/presto-plugin-toolkit/pom.xml b/presto-plugin-toolkit/pom.xml index 09ce9b6d4e9a6..e596536fe5147 100644 --- a/presto-plugin-toolkit/pom.xml +++ b/presto-plugin-toolkit/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-plugin-toolkit diff --git a/presto-postgresql/pom.xml b/presto-postgresql/pom.xml index f414e803b3126..805b8e7462485 100644 --- a/presto-postgresql/pom.xml +++ b/presto-postgresql/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-postgresql diff --git a/presto-product-tests/pom.xml b/presto-product-tests/pom.xml index 858fea0a153ff..a65984e897abf 100644 --- a/presto-product-tests/pom.xml +++ b/presto-product-tests/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-product-tests diff --git a/presto-prometheus/pom.xml b/presto-prometheus/pom.xml index b929234014949..920a9e327e072 100644 --- a/presto-prometheus/pom.xml +++ b/presto-prometheus/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-prometheus diff --git a/presto-proxy/pom.xml b/presto-proxy/pom.xml index 4f8b66980b890..522b9fedec32d 100644 --- a/presto-proxy/pom.xml +++ b/presto-proxy/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-proxy diff --git a/presto-rcfile/pom.xml b/presto-rcfile/pom.xml index 8f268ef3b668b..d61d34c64bc87 100644 --- a/presto-rcfile/pom.xml +++ b/presto-rcfile/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-rcfile diff --git a/presto-record-decoder/pom.xml b/presto-record-decoder/pom.xml index a5402cfae9a80..d4e25aeff445b 100644 --- a/presto-record-decoder/pom.xml +++ b/presto-record-decoder/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-record-decoder diff --git a/presto-redis/pom.xml b/presto-redis/pom.xml index fe443fa5682a6..27876e15e6144 100644 --- a/presto-redis/pom.xml +++ b/presto-redis/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-redis diff --git a/presto-redshift/pom.xml b/presto-redshift/pom.xml index aef4aa800f3da..bcbd9c9d96061 100644 --- a/presto-redshift/pom.xml +++ b/presto-redshift/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-redshift diff --git a/presto-resource-group-managers/pom.xml b/presto-resource-group-managers/pom.xml index 54042e0fe198c..1a00438655bcb 100644 --- a/presto-resource-group-managers/pom.xml +++ b/presto-resource-group-managers/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-resource-group-managers diff --git a/presto-router-example-plugin-scheduler/pom.xml b/presto-router-example-plugin-scheduler/pom.xml index 1ddfa1f835db3..adf4a6d6a5769 100644 --- a/presto-router-example-plugin-scheduler/pom.xml +++ b/presto-router-example-plugin-scheduler/pom.xml @@ -5,12 +5,12 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT com.facebook.presto.router presto-router-example-plugin-scheduler - 0.293 + 0.293.0-yscope-SNAPSHOT jar presto-router-example-plugin-scheduler Presto-router example custom plugin scheduler diff --git a/presto-router/pom.xml b/presto-router/pom.xml index 2e56b372dea34..e03062c3599e0 100755 --- a/presto-router/pom.xml +++ b/presto-router/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-router diff --git a/presto-server/pom.xml b/presto-server/pom.xml index 68318f574c5a3..f3712358e4f54 100644 --- a/presto-server/pom.xml +++ b/presto-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-server diff --git a/presto-session-property-managers/pom.xml b/presto-session-property-managers/pom.xml index c67c0627f2601..fbaf194908942 100644 --- a/presto-session-property-managers/pom.xml +++ b/presto-session-property-managers/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-session-property-managers diff --git a/presto-singlestore/pom.xml b/presto-singlestore/pom.xml index 4a0c920b9d7da..a335663c6f37d 100644 --- a/presto-singlestore/pom.xml +++ b/presto-singlestore/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-singlestore diff --git a/presto-spark-base/pom.xml b/presto-spark-base/pom.xml index bc78fa3d2d83c..65bebae23dd12 100644 --- a/presto-spark-base/pom.xml +++ b/presto-spark-base/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-spark-classloader-interface/pom.xml b/presto-spark-classloader-interface/pom.xml index 284ea5daa2adf..f642e8786f167 100644 --- a/presto-spark-classloader-interface/pom.xml +++ b/presto-spark-classloader-interface/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-spark-common/pom.xml b/presto-spark-common/pom.xml index cb630f68b4666..9c63b921727df 100644 --- a/presto-spark-common/pom.xml +++ b/presto-spark-common/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-spark-common diff --git a/presto-spark-launcher/pom.xml b/presto-spark-launcher/pom.xml index 9cd70394a856b..2c9336b672a4c 100644 --- a/presto-spark-launcher/pom.xml +++ b/presto-spark-launcher/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-spark-package/pom.xml b/presto-spark-package/pom.xml index f3a4702034b4f..0afefec4be840 100644 --- a/presto-spark-package/pom.xml +++ b/presto-spark-package/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-spark-package diff --git a/presto-spark-testing/pom.xml b/presto-spark-testing/pom.xml index 636f94ddcb30f..db4c42a21af4c 100644 --- a/presto-spark-testing/pom.xml +++ b/presto-spark-testing/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-spark/pom.xml b/presto-spark/pom.xml index 63823fc3820eb..138e0bb403dc8 100644 --- a/presto-spark/pom.xml +++ b/presto-spark/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-spi/pom.xml b/presto-spi/pom.xml index 50f6fb5a67b03..b504ab2cdd527 100644 --- a/presto-spi/pom.xml +++ b/presto-spi/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-spi diff --git a/presto-sqlserver/pom.xml b/presto-sqlserver/pom.xml index 35cf36c1caa68..171cc6154ca7e 100644 --- a/presto-sqlserver/pom.xml +++ b/presto-sqlserver/pom.xml @@ -3,7 +3,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT 4.0.0 diff --git a/presto-teradata-functions/pom.xml b/presto-teradata-functions/pom.xml index f2c44fb7c95f1..a046bea17c9b7 100644 --- a/presto-teradata-functions/pom.xml +++ b/presto-teradata-functions/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-teradata-functions diff --git a/presto-test-coverage/pom.xml b/presto-test-coverage/pom.xml index 262d1da26dd5f..7fd7698a4deca 100644 --- a/presto-test-coverage/pom.xml +++ b/presto-test-coverage/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-test-coverage diff --git a/presto-testing-docker/pom.xml b/presto-testing-docker/pom.xml index de8ca22ff1545..035a5928e18bc 100644 --- a/presto-testing-docker/pom.xml +++ b/presto-testing-docker/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-testing-docker diff --git a/presto-testing-server-launcher/pom.xml b/presto-testing-server-launcher/pom.xml index e32860086e657..f27c0f3cbb394 100644 --- a/presto-testing-server-launcher/pom.xml +++ b/presto-testing-server-launcher/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-testing-server-launcher diff --git a/presto-testng-services/pom.xml b/presto-testng-services/pom.xml index 4fb633b90951d..12867a37d872d 100644 --- a/presto-testng-services/pom.xml +++ b/presto-testng-services/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-testng-services diff --git a/presto-tests/pom.xml b/presto-tests/pom.xml index 0cfed58dea9ba..f4453fc41f867 100644 --- a/presto-tests/pom.xml +++ b/presto-tests/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT presto-tests diff --git a/presto-thrift-api/pom.xml b/presto-thrift-api/pom.xml index 2a95d808ee88a..0ad5e18808aa5 100644 --- a/presto-thrift-api/pom.xml +++ b/presto-thrift-api/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-thrift-api diff --git a/presto-thrift-connector/pom.xml b/presto-thrift-connector/pom.xml index bbef0bfa145a9..7a6bc171bae7f 100644 --- a/presto-thrift-connector/pom.xml +++ b/presto-thrift-connector/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-thrift-connector diff --git a/presto-thrift-spec/pom.xml b/presto-thrift-spec/pom.xml index f4b3a144ba775..592dc81c0e23a 100644 --- a/presto-thrift-spec/pom.xml +++ b/presto-thrift-spec/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-thrift-spec diff --git a/presto-thrift-testing-server/pom.xml b/presto-thrift-testing-server/pom.xml index a92d4ed63a513..32856b2d1038e 100644 --- a/presto-thrift-testing-server/pom.xml +++ b/presto-thrift-testing-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-thrift-testing-server diff --git a/presto-thrift-testing-udf-server/pom.xml b/presto-thrift-testing-udf-server/pom.xml index 25b2a4b0517e1..587ba720d0ebf 100644 --- a/presto-thrift-testing-udf-server/pom.xml +++ b/presto-thrift-testing-udf-server/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-thrift-testing-udf-server diff --git a/presto-tpcds/pom.xml b/presto-tpcds/pom.xml index 1fd85413487d6..c8d4fb5854016 100644 --- a/presto-tpcds/pom.xml +++ b/presto-tpcds/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-tpcds diff --git a/presto-tpch/pom.xml b/presto-tpch/pom.xml index 3f0eb6c457adb..51a24a6b48518 100644 --- a/presto-tpch/pom.xml +++ b/presto-tpch/pom.xml @@ -4,7 +4,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-tpch diff --git a/presto-ui/pom.xml b/presto-ui/pom.xml index f3ce6f4f0d32e..d54be0931b8e9 100644 --- a/presto-ui/pom.xml +++ b/presto-ui/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-ui diff --git a/presto-verifier/pom.xml b/presto-verifier/pom.xml index 79194914cf4b4..23b588086ec54 100644 --- a/presto-verifier/pom.xml +++ b/presto-verifier/pom.xml @@ -5,7 +5,7 @@ com.facebook.presto presto-root - 0.293 + 0.293.0-yscope-SNAPSHOT presto-verifier diff --git a/redis-hbo-provider/pom.xml b/redis-hbo-provider/pom.xml index 7334c02e0b846..69aa7a7f583d7 100644 --- a/redis-hbo-provider/pom.xml +++ b/redis-hbo-provider/pom.xml @@ -5,7 +5,7 @@ presto-root com.facebook.presto - 0.293 + 0.293.0-yscope-SNAPSHOT