-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild-jar.sh
More file actions
executable file
·11 lines (10 loc) · 1008 Bytes
/
build-jar.sh
File metadata and controls
executable file
·11 lines (10 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
./build.sh
rm -rf mods/jarred
mkdir mods/jarred
jar --create --file mods/jarred/easytext.algorithm.api@1.0.jar --module-version=1.0 -C mods/easytext.algorithm.api .
jar --create --file mods/jarred/easytext.algorithm.coleman@1.0.jar --module-version=1.0 -C mods/easytext.algorithm.coleman .
jar --create --file mods/jarred/easytext.algorithm.kincaid@1.0.jar --module-version=1.0 -C mods/easytext.algorithm.kincaid .
jar --create --file mods/jarred/easytext.algorithm.naivesyllablecounter@1.0.jar --module-version=1.0 -C mods/easytext.algorithm.naivesyllablecounter .
jar --create --file mods/jarred/easytext.algorithm.nextgensyllablecounter@1.0.jar --module-version=1.0 -C mods/easytext.algorithm.nextgensyllablecounter .
jar --create --file mods/jarred/easytext.cli@1.0.jar --module-version=1.0 --main-class=javamodularity.easytext.cli.Main -C mods/easytext.cli .
jar --create --file mods/jarred/easytext.gui@1.0.jar --module-version=1.0 --main-class=javamodularity.easytext.gui.Main -C mods/easytext.gui .