X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=getdown%2Fsrc%2Fgetdown%2Fmvn_cmd;h=e0d7cf143e6e182bbbe029f7f9d0fac50ad652c6;hb=e0fff6b634346ca2d0256d95eacc1b0aae7d3387;hp=0ce786ff8a839c58761aaef9c830fe3881d99a76;hpb=8e8c056eb48f684a7c222cc4c23a2f154fff8d3f;p=jalview.git diff --git a/getdown/src/getdown/mvn_cmd b/getdown/src/getdown/mvn_cmd old mode 100644 new mode 100755 index 0ce786f..e0d7cf1 --- a/getdown/src/getdown/mvn_cmd +++ b/getdown/src/getdown/mvn_cmd @@ -1 +1,33 @@ -mvn clean package -Dgetdown.host.whitelist="jalview.org,*.jalview.org" && cp launcher/target/getdown-launcher-1.8.3-SNAPSHOT.jar ../../../getdown/lib/getdown-launcher.jar && cp core/target/getdown-core-1.8.3-SNAPSHOT.jar ../../../getdown/lib/getdown-core-1.8.3-SNAPSHOT.jar && cp core/target/getdown-core-1.8.3-SNAPSHOT.jar ../../../j8lib/getdown-core.jar && cp core/target/getdown-core-1.8.3-SNAPSHOT.jar ../../../j11lib/getdown-core.jar +#!/usr/bin/env bash + +if [ x$JVLVERSION != x ]; then + export VERSION=$JVLVERSION +else + export VERSION=1.8.3-1.2.9_JVL +fi + +if [ x${VERSION%_JVL} = x$VERSION ]; then + VERSION=${VERSION}_JVL +fi + +echo "Setting VERSION to '$VERSION'" +perl -p -i -e 's|()[^<]*JVL[^<]*()|${1}$ENV{VERSION}${2}|;' pom.xml */pom.xml +mvn package -Dgetdown.host.whitelist="jalview.org,*.jalview.org" -Dallow_file_protocol=false -Dconnect_timeout=8 -Dread_timeout=15 +RET=$? +if [ x$RET = x0 ]; then + cp launcher/target/getdown-launcher-$VERSION.jar ../../../getdown/lib/getdown-launcher.jar && echo "Copied getdown-launcher-$VERSION.jar to getdown/lib" + cp core/target/getdown-core-$VERSION.jar ../../../getdown/lib/getdown-core.jar && echo "Copied getdown-core-$VERSION.jar to getdown/lib" + cp core/target/getdown-core-$VERSION.jar ../../../j8lib/getdown-core.jar && echo "Copied getdown-core-$VERSION.jar to j8lib" + cp core/target/getdown-core-$VERSION.jar ../../../j11lib/getdown-core.jar && echo "Copied getdown-core-$VERSION.jar to j11lib" + echo "$VERSION" > ../../../getdown/lib/JVL_VERSION +fi + +VERSION=${VERSION/JVL/FJVL} +echo "Setting VERSION to '$VERSION'" +perl -p -i -e 's|()[^<]*JVL[^<]*()|${1}$ENV{VERSION}${2}|;' pom.xml */pom.xml +mvn package -Dgetdown.host.whitelist="jalview.org,*.jalview.org" -Dallow_file_protocol=true -Dconnect_timeout=4 -Dread_timeout=4 +RET=$? +if [ x$RET = x0 ]; then + cp launcher/target/getdown-launcher-$VERSION.jar ../../../getdown/lib/getdown-launcher-local.jar && echo "Copied getdown-launcher-$VERSION.jar to getdown/lib/getdown-launcher-local.jar" + echo "$VERSION" > ../../../getdown/lib/FJVL_VERSION +fi