2 Star 3 Fork 2

小帅丶 / deeplearning4j

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
change-scala-versions.sh 2.63 KB
一键复制 编辑 原始数据 按行查看 历史
Adam Gibson 提交于 2017-08-12 10:46 . Evalserializationfixes (#3847)
#!/usr/bin/env bash
#
# 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.
#
# This shell script is adapted from Apache Flink (in turn, adapted from Apache Spark) some modifications.
set -e
VALID_VERSIONS=( 2.10 2.11 )
SCALA_211_VERSION="2\.11\.8"
SCALA_210_VERSION="2\.10\.6"
usage() {
echo "Usage: $(basename $0) [-h|--help] <scala version to be used>
where :
-h| --help Display this help text
valid scala version values : ${VALID_VERSIONS[*]}
" 1>&2
exit 1
}
if [[ ($# -ne 1) || ( $1 == "--help") || $1 == "-h" ]]; then
usage
fi
TO_VERSION=$1
check_scala_version() {
for i in ${VALID_VERSIONS[*]}; do [ $i = "$1" ] && return 0; done
echo "Invalid Scala version: $1. Valid versions: ${VALID_VERSIONS[*]}" 1>&2
exit 1
}
check_scala_version "$TO_VERSION"
if [ $TO_VERSION = "2.11" ]; then
FROM_BINARY="_2\.10"
TO_BINARY="_2\.11"
FROM_VERSION=$SCALA_210_VERSION
TO_VERSION=$SCALA_211_VERSION
else
FROM_BINARY="_2\.11"
TO_BINARY="_2\.10"
FROM_VERSION=$SCALA_211_VERSION
TO_VERSION=$SCALA_210_VERSION
fi
sed_i() {
sed -e "$1" "$2" > "$2.tmp" && mv "$2.tmp" "$2"
}
export -f sed_i
echo "Updating Scala versions in pom.xml files to Scala $1";
BASEDIR=$(dirname $0)
#Artifact ids, ending with "_2.10" or "_2.11". Spark, spark-mllib, kafka, etc.
find "$BASEDIR" -name 'pom.xml' -not -path '*target*' \
-exec bash -c "sed_i 's/\(artifactId>.*\)'$FROM_BINARY'<\/artifactId>/\1'$TO_BINARY'<\/artifactId>/g' {}" \;
#Scala versions, like <artifactId>scala-library</artifactId> <version>2.10.6</version>
find "$BASEDIR" -name 'pom.xml' -not -path '*target*' \
-exec bash -c "sed_i 's/\(version>\)'$FROM_VERSION'<\/version>/\1'$TO_VERSION'<\/version>/g' {}" \;
#Scala maven plugin, <scalaVersion>2.10</scalaVersion>
find "$BASEDIR" -name 'pom.xml' -not -path '*target*' \
-exec bash -c "sed_i 's/\(scalaVersion>\)'$FROM_VERSION'<\/scalaVersion>/\1'$TO_VERSION'<\/scalaVersion>/g' {}" \;
echo "Done updating Scala versions.";
Java
1
https://gitee.com/xshuai/deeplearning4j.git
git@gitee.com:xshuai/deeplearning4j.git
xshuai
deeplearning4j
deeplearning4j
master

搜索帮助