Searched +full:- +full:dperformrelease (Results 1 – 14 of 14) sorted by relevance
8 # http://www.apache.org/licenses/LICENSE-2.016 set -eo pipefail20 python3 -m pip install --require-hashes -r $requirementsFile21 python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script33 mvn clean deploy -B \34 --settings ${MAVEN_SETTINGS_FILE} \35 -DskipTests=true \36 -Dclirr.skip=true \37 -DperformRelease=true \38 -Dgpg.executable=gpg \[all …]
8 # http://www.apache.org/licenses/LICENSE-2.016 set -eo pipefail19 if [ -z "${STAGING_REPOSITORY_ID}" ]; then31 mvn nexus-staging:release -B \32 -DperformRelease=true \33 --settings=settings.xml \34 -DstagingRepositoryId=${STAGING_REPOSITORY_ID}
8 # http://www.apache.org/licenses/LICENSE-2.016 set -eo pipefail22 # ensure we're trying to push a snapshot (no-result returns non-zero exit code)28 mvn clean deploy -B \29 --settings ${MAVEN_SETTINGS_FILE} \30 -DperformRelease=true \31 -Dgpg.executable=gpg \32 -Dgpg.passphrase=${GPG_PASSPHRASE} \33 -Dgpg.homedir=${GPG_HOMEDIR}
1 One-time setup5 -----------------------10 ------------------------12 …h rights by creating an issue similar to [this one](https://issues.sonatype.org/browse/OSSRH-16798)17 ---------------22 * Generate the key ```gpg --gen-key```26 * One way to make a random passphrase: ```base64 /dev/urandom | head -c20; echo;```28 * Find the ID of your public key ```gpg --list-secret-keys```29 * Look for the line with format ```sec 2048R/ABCDEFGH 2015-11-17```32 * Upload your public key to a public server: ```gpg --send-keys --keyserver hkp://pgp.mit.edu ABCDE…[all …]
4 # deploy without tagging: mvn deploy -DperformRelease7 mvn release:perform -P sign
1 mvn clean install -Dgpg.skip=true11 # deploy without tagging: mvn deploy -DperformRelease
3 # - pom.xml defines the project version "n-SNAPSHOT", builds, jars and deploys (but doesn't5 # - pom-test.xml declares a test dependency on "n-SNAPSHOT", which it will find9 mvn clean install -Dgpg.skip=true13 mvn -f pom-test.xml test17 echo "To run the tests: mvn -f pom-test.xml test"23 # deploy without tagging: mvn deploy -DperformRelease
8 # http://www.apache.org/licenses/LICENSE-2.016 set -eo pipefail18 if [[ -n "${AUTORELEASE_PR}" ]]22 python3 -m pip install --require-hashes -r $requirementsFile23 …python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-scri…33 mvn clean deploy -B \34 -DskipTests=true \35 -Dclirr.skip=true \36 --settings ${MAVEN_SETTINGS_FILE} \37 -Dgpg.executable=gpg \[all …]
8 # http://www.apache.org/licenses/LICENSE-2.016 set -eo pipefail20 python3 -m pip install --require-hashes -r $requirementsFile21 python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script34 # https://github.com/googleapis/google-cloud-java/issues/904535 excludedNonCloudModules=$(find java-maps-* -name 'pom.xml' \36 |sed -e 's/^/!/' -e 's|/pom.xml$||' |xargs |sed -e 's/ /,/g')39 mvn clean deploy -B \40 -DskipTests=true \41 -Dclirr.skip=true \[all …]
8 # http://www.apache.org/licenses/LICENSE-2.016 set -eo pipefail27 python3 -m pip install --require-hashes -r $requirementsFile28 python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script37 echo "Deploying non-Cloud artifacts to staging repositories in oss.sonatype.org"40 IncludedNonCloudModules=$(find java-maps-* -name 'pom.xml' \41 |sed -e 's|/pom.xml$||' |xargs |sed -e 's/ /,/g')44 mvn clean deploy -B \45 -DskipTests=true \46 -Dclirr.skip=true \[all …]
6 - pip install awscli --upgrade --user10 - ROOT=`pwd`11 - SETTINGS_XML_TEMPLATE=buildspecs/resources/release-settings.xml12 - SETTINGS_XML=release-settings-final.xml13 - SDK_SIGNING_GPG_SECRING=secring.gpg14 …- SDK_SIGNING_GPG_SECRING_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing-gp…15 …- SDK_SIGNING_GPG_KEYNAME_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing-gp…16 …- SDK_SIGNING_GPG_PASSPHRASE_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing…17 …- SONATYPE_PASSWORD_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sonatype-password-I2…21 …- RELEASE_VERSION=`mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive …[all …]