Files
Terrasaur/src/main/bash/createVersionFile.bash
2025-04-28 11:18:38 -04:00

82 lines
2.8 KiB
Bash
Executable File

#!/bin/bash
# This script is run from maven. See the exec-maven-plugin block in the pom.xml file.
# these should be consistent with the root-level mkPackage.bash script
package=Terrasaur
srcFile="../java/terrasaur/utils/AppVersion.java"
cd $(dirname $0)
date=$(date -u +"%Y-%b-%d %H:%M:%S %Z")
rev=$(git rev-parse --verify --short HEAD)
if [ $? -gt 0 ]; then
lastCommit=$(date -u +"%y.%m.%d")
rev="UNVERSIONED"
else
lastCommit=$(git log -1 --format=%cd --date=format:%y.%m.%d)
rev=$(git rev-parse --verify --short HEAD)
if [[ $(git diff --stat) != '' ]]; then
if [[ $(git status -s --untracked=no | grep -v pom.xml | grep -v pom.bak | grep -v .m2 | grep -v $srcFile) != '' ]]; then
rev=${rev}M
fi
fi
fi
mkdir -p $(dirname $srcFile)
touch $srcFile
cat <<EOF > $srcFile
/*
* The MIT License
* Copyright © 2025 Johns Hopkins University Applied Physics Laboratory
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package terrasaur.utils;
public class AppVersion {
public final static String lastCommit = "$lastCommit";
// an M at the end of gitRevision means this was built from a "dirty" git repository
public final static String gitRevision = "$rev";
public final static String applicationName = "$package";
public final static String dateString = "$date";
private AppVersion() {}
/**
* $package version $lastCommit-$rev built $date
*/
public static String getFullString() {
return String.format("%s version %s-%s built %s", applicationName, lastCommit, gitRevision, dateString);
}
/**
* $package version $lastCommit-$rev
*/
public static String getVersionString() {
return String.format("%s version %s-%s", applicationName, lastCommit, gitRevision);
}
}
EOF