77 lines
2.5 KiB
Bash
Executable File
77 lines
2.5 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# 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.
|
|
# -----------------------------------------------------------------------------
|
|
#
|
|
# Shell script to create commons math RCs.
|
|
# This script should be run from a fresh checkout of the RC tag.
|
|
#
|
|
# -----------------------------------------------------------------------------
|
|
# Set script variables
|
|
version=2.1
|
|
repo_path=~/.m2/repository/org/apache/commons/commons-math/${version}
|
|
site_mods_path=./siteMods
|
|
release_path=~/math-release
|
|
#
|
|
# Delete any locally installed artifacts from previous runs
|
|
rm -rf ${repo_path}
|
|
echo "Cleaned maven repo."
|
|
rm -rf ${release_path}
|
|
echo "Cleaned local release directory"
|
|
mvn clean
|
|
#
|
|
# Chicanery to get only the userguide in the site
|
|
cp ${site_mods_path}/pom.xml .
|
|
cp ${site_mods_path}/site.xml src/site/
|
|
mvn site
|
|
cp ${site_mods_path}/site.css target/site/css
|
|
rm target/site/*
|
|
rm -rf target/site/style
|
|
cp -r target/apidocs target/site
|
|
svn revert src/site/site.xml
|
|
svn revert pom.xml
|
|
#
|
|
# Generate the release artifacts and install them locally
|
|
mvn assembly:assembly
|
|
mvn -Prc -DcreateChecksum=true install
|
|
#
|
|
# Copy the zips/tarballs and release notes to release directory
|
|
mkdir ${release_path}
|
|
cp ${repo_path}/*.zip ${release_path}
|
|
cp ${repo_path}/*.zip.* ${release_path}
|
|
cp ${repo_path}/*.gz ${release_path}
|
|
cp ${repo_path}/*.gz.* ${release_path}
|
|
cp RELEASE-NOTES.txt ${release_path}
|
|
#
|
|
# Copy site
|
|
cp -R target/site ${release_path}
|
|
#
|
|
# Copy maven artifacts
|
|
cp -R ${repo_path} ${release_path}
|
|
#
|
|
# Rename maven, site directories
|
|
mv ${release_path}/${version} ${release_path}/maven
|
|
mv ${release_path}/site ${release_path}/docs
|
|
echo "Artifacts copied."
|
|
#
|
|
# Delete tars/zips from maven subdirectory
|
|
rm ${release_path}/maven/*.zip
|
|
rm ${release_path}/maven/*.zip*
|
|
rm ${release_path}/maven/*.gz
|
|
rm ${release_path}/maven/*.gz*
|
|
echo "Release candidate complete"
|
|
|