diff --git a/examples/project-example/NATT.jar b/examples/project-example/NATT.jar index d31af0d1..7d6523c6 100644 Binary files a/examples/project-example/NATT.jar and b/examples/project-example/NATT.jar differ diff --git a/fast_build_and_move_to_editor.sh b/fast_build_and_move_to_editor.sh index 5e53ae5b..0da762c5 100755 --- a/fast_build_and_move_to_editor.sh +++ b/fast_build_and_move_to_editor.sh @@ -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" diff --git a/full_build.sh b/full_build.sh new file mode 100755 index 00000000..17d42f12 --- /dev/null +++ b/full_build.sh @@ -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" \ No newline at end of file diff --git a/natt-config-editor/NATT.jar b/natt-config-editor/NATT.jar index d31af0d1..7d6523c6 100644 Binary files a/natt-config-editor/NATT.jar and b/natt-config-editor/NATT.jar differ