Co-authored-by: r3cp3ct <45179536+r3cp3ct@users.noreply.github.com> Co-authored-by: sigonasr2 <sigonasr2@gmail.com>main
parent
4dd37e25b2
commit
f1029c11fd
@ -0,0 +1,17 @@ |
|||||||
|
#Builds a runnable jar file using ${MAIN_CLASS} as an entry point and then runs the newly generated jar for Windows. |
||||||
|
#Java |
||||||
|
source ${LANGUAGE}/scripts/version_info |
||||||
|
rm -Rf bin/* |
||||||
|
javac -source ${SOURCE_VERSION} -target ${TARGET_VERSION} -Xlint:unchecked -cp ${CLASS_PATH_WINDOWS} -d ${OUT_DIR} ${PROJECT_DIR}/${PROJECT_NAME}.java |
||||||
|
printf "\n\n\nGenerating Manifest...\n\n" |
||||||
|
touch manifest |
||||||
|
echo "Main-Class: ${MAIN_CLASS}" > manifest |
||||||
|
printf "\n\n\nCreating Jar...\n\n" |
||||||
|
ORIGINAL_LOC=$(pwd) |
||||||
|
cd ${OUT_DIR} |
||||||
|
jar cfm ${PROJECT_NAME}.jar ${ORIGINAL_LOC}/manifest sig |
||||||
|
jar uf ${PROJECT_NAME}.jar -C ../lib/bin/ . |
||||||
|
printf "\n\n\nRunning Program...\n\n" |
||||||
|
java ${CUSTOM_PARAMS} -cp .;../lib/bin "-Djava.library.path=${LIBRARY_PATH}" -jar ${PROJECT_NAME}.jar "$@" |
||||||
|
${ORIGINAL_LOC}/${LANGUAGE}/scripts/clean.sh |
||||||
|
cd .. |
@ -1,6 +1,8 @@ |
|||||||
build.sh:293285766098a4e3d4d708e58a69de82 *- |
build2.sh:8e21e7c419a3c3974ab32902802a8c7a - |
||||||
clean.sh:668a2f9b568c55f6a044a509315032f6 *- |
build.sh:b247061c83c39b1bb78ac7642534ba2c - |
||||||
commit.sh:5e4448db9ad48e72ec3a1ff4f5763b41 *- |
clean.sh:668a2f9b568c55f6a044a509315032f6 - |
||||||
jar.sh:2f59229fcaf02779bfaa43144f3be66f *- |
commit.sh:5e4448db9ad48e72ec3a1ff4f5763b41 - |
||||||
release.sh:b1b62203411b18d0fec1db3dc2e5a061 *- |
jar2.sh:7977fc138ee5db798d08c34734f0be93 - |
||||||
update.sh:3be721658983183efa395984acd96b03 *- |
jar.sh:821d5a109324d405f05c35c4bb129375 - |
||||||
|
release.sh:b1b62203411b18d0fec1db3dc2e5a061 - |
||||||
|
update.sh:3be721658983183efa395984acd96b03 - |
||||||
|
@ -1,5 +1,5 @@ |
|||||||
.coauthors |
.coauthors |
||||||
.updateDirectories |
|
||||||
define.sh |
define.sh |
||||||
main.sh |
main.sh |
||||||
search.sh |
search.sh |
||||||
|
.updateDirectories |
||||||
|
@ -1,4 +1,4 @@ |
|||||||
.updateDirectories:0ede00461e947494545e694040787b3f *- |
define.sh:3ecab0dffe2adfb950f3eb7c7061b750 - |
||||||
define.sh:3ecab0dffe2adfb950f3eb7c7061b750 *- |
main.sh:d3d1bd0b56d8114eb7479964227f8576 - |
||||||
main.sh:d3d1bd0b56d8114eb7479964227f8576 *- |
search.sh:81d08f5ff48e8a44b5f68387d426da05 - |
||||||
search.sh:81d08f5ff48e8a44b5f68387d426da05 *- |
.updateDirectories:0ede00461e947494545e694040787b3f - |
||||||
|
Loading…
Reference in new issue