# HG changeset patch # User Mike Becker # Date 1728216054 -7200 # Node ID bc096357e324c5d32af278f55abd0e773c0f4295 # Parent 41981a23aff8e2f5c6522c6fb48439a8d76baa40 release version 0.2.0 diff -r 41981a23aff8 -r bc096357e324 dist.src/bin/uwproj --- a/dist.src/bin/uwproj Tue Sep 24 21:49:50 2024 +0200 +++ b/dist.src/bin/uwproj Sun Oct 06 14:00:54 2024 +0200 @@ -1,4 +1,5 @@ #!/bin/sh PREFIX=%%PREFIX%% +echo "uwproj - version ${project.version}" java -jar "$PREFIX/lib/uwproj/uwproj-${project.version}.jar" "$@" diff -r 41981a23aff8 -r bc096357e324 dist.src/install.sh --- a/dist.src/install.sh Tue Sep 24 21:49:50 2024 +0200 +++ b/dist.src/install.sh Sun Oct 06 14:00:54 2024 +0200 @@ -1,6 +1,7 @@ #!/bin/sh PREFIX=/usr/local +VERSION=${project.version} # help text printhelp() @@ -43,8 +44,8 @@ # # install the JAR file # -echo "cp ../target/uwproj-0.2.0-SNAPSHOT-jar-with-dependencies.jar $PREFIX/lib/uwproj/uwproj-0.2.0-SNAPSHOT.jar" -cp "../target/uwproj-0.2.0-SNAPSHOT-jar-with-dependencies.jar" "$PREFIX/lib/uwproj/uwproj-0.2.0-SNAPSHOT.jar" \ +echo "cp ../target/uwproj-$VERSION-jar-with-dependencies.jar $PREFIX/lib/uwproj/uwproj-$VERSION.jar" +cp "../target/uwproj-$VERSION-jar-with-dependencies.jar" "$PREFIX/lib/uwproj/uwproj-$VERSION.jar" \ || exit_on_error "Installing JAR file failed." # @@ -59,4 +60,4 @@ || exit_on_error "Changing permissions for run script failed." echo -echo "uwproj has been successfully installed." +echo "uwproj $VERSION has been successfully installed." diff -r 41981a23aff8 -r bc096357e324 pom.xml --- a/pom.xml Tue Sep 24 21:49:50 2024 +0200 +++ b/pom.xml Sun Oct 06 14:00:54 2024 +0200 @@ -4,7 +4,7 @@ 4.0.0 de.unixwork uwproj - 0.2.0-SNAPSHOT + 0.2.0 jar Makefile configuration tool.