Skip to content

Commit

Permalink
build scripts update
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMartin committed Aug 11, 2024
1 parent 3e0ca79 commit 0f64dca
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
Binary file modified examples/project-example/NATT.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion fast_build_and_move_to_editor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@

./gradlew :natt:build -x test

cp app/build/libs/app-all.jar natt-config-editor/NATT.jar && echo "NATT.jar moved to config-editor"
cp natt/build/libs/natt-*-all.jar natt-config-editor/NATT.jar && echo "NATT.jar moved to config-editor"
cp natt/build/libs/natt-*-all.jar examples/project-example/NATT.jar && echo "NATT.jar moved to project-example"

12 changes: 12 additions & 0 deletions full_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

./gradlew :natt-spi:build

cp natt-spi/build/libs/natt-spi-*.jar natt/libs && echo "Copied natt-spi to natt/libs"

cp natt-spi/build/libs/natt-spi-*.jar examples/plugin-example/plugin/libs && echo "Copied natt-spi to examples/plugin-example/plugin/libs"

./gradlew :natt:build

cp natt/build/libs/natt-*-all.jar natt-config-editor/NATT.jar && echo "NATT.jar moved to config-editor"
cp natt/build/libs/natt-*-all.jar examples/project-example/NATT.jar && echo "NATT.jar moved to project-example"
Binary file modified natt-config-editor/NATT.jar
Binary file not shown.

0 comments on commit 0f64dca

Please sign in to comment.