-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 in DEVEX/fsdevtools from DEVEX-98 to master
Squashed commit of the following: commit 5e9f591 Author: Nicolai Henczi <henczi@e-spirit.com> Date: Fri Jun 2 15:54:00 2017 +0200 DEVEX-98 fixed fs-cli.sh commit b692d1d Author: Hannes Pernpeintner <pernpeintner@e-spirit.com> Date: Wed May 31 09:09:04 2017 +0200 DEVEX-98 fixed review issues commit 047dfe9 Author: Hannes Pernpeintner <pernpeintner@e-spirit.com> Date: Mon May 29 10:27:06 2017 +0200 DEVEX-98 changed developer documentation for unrestricted classpath scanning and custom artifact support, changed linux command line file commit fc193c2 Author: Hannes Pernpeintner <pernpeintner@e-spirit.com> Date: Wed May 24 13:18:22 2017 +0200 DEVEX-98 added unrestricted classpath scanning and example custom command module
- Loading branch information
1 parent
f31734c
commit a788f41
Showing
18 changed files
with
274 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
JAVACMD="$JAVA_HOME/bin/java"; | ||
FS_CLI_DIR="$(dirname $(readlink -f $0))/../"; | ||
JARFILE="${FS_CLI_DIR}lib/${project.artifactId}-${project.version}.jar"; | ||
$JAVACMD -Dlog4j.configuration=file:"${FS_CLI_DIR}conf/log4j.properties" -jar $JARFILE "$@"; | ||
$JAVACMD -Dlog4j.configuration=file:"${FS_CLI_DIR}conf/log4j.properties" -cp "${FS_CLI_DIR}/lib/*" com.espirit.moddev.cli.Cli "$@"; | ||
RETVAL=$?; | ||
exit ${RETVAL}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.