eca0e160ed
Motivation: We should have license header whenever possible. Modifications: Add header to scripts and workflow config Result: More clear licensing
50 lines
2.1 KiB
Bash
Executable File
50 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# ----------------------------------------------------------------------------
|
|
# Copyright 2021 The Netty Project
|
|
#
|
|
# The Netty Project 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:
|
|
#
|
|
# https://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.
|
|
# ----------------------------------------------------------------------------
|
|
set -e
|
|
|
|
if [ "$#" -ne 2 ]; then
|
|
echo "Expected staging profile id and branch name, login into oss.sonatype.org to retrieve it"
|
|
exit 1
|
|
fi
|
|
|
|
OS=$(uname)
|
|
|
|
if [ "$OS" != "Darwin" ]; then
|
|
echo "Needs to be executed on macOS"
|
|
exit 1
|
|
fi
|
|
|
|
BRANCH=$(git branch --show-current)
|
|
|
|
if git tag | grep -q "$2" ; then
|
|
echo "Tag $2 already existed locally, deleting it"
|
|
git tag -d "$2"
|
|
fi
|
|
|
|
git fetch
|
|
git checkout "$2"
|
|
|
|
export JAVA_HOME="$JAVA8_HOME"
|
|
|
|
./mvnw -Psonatype-oss-release -am -pl resolver-dns-native-macos,transport-native-unix-common,transport-native-kqueue clean package gpg:sign org.sonatype.plugins:nexus-staging-maven-plugin:deploy -DstagingRepositoryId="$1" -DnexusUrl=https://oss.sonatype.org -DserverId=sonatype-nexus-staging -DskipTests=true
|
|
|
|
./mvnw -Psonatype-oss-release,full,uber-staging -pl all,tarball clean package gpg:sign org.sonatype.plugins:nexus-staging-maven-plugin:deploy -DstagingRepositoryId="$1" -DnexusUrl=https://oss.sonatype.org -DserverId=sonatype-nexus-staging -DskipTests=true
|
|
|
|
./mvnw org.sonatype.plugins:nexus-staging-maven-plugin:rc-close org.sonatype.plugins:nexus-staging-maven-plugin:rc-release -DstagingRepositoryId="$1" -DnexusUrl=https://oss.sonatype.org -DserverId=sonatype-nexus-staging -DskipTests=true -DstagingProgressTimeoutMinutes=10
|
|
|
|
git checkout "$BRANCH"
|