diff --git a/.gitignore b/.gitignore index cc637f226a..5973e98d12 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +*~ +#* +*# +.#* .classpath .project .settings/ diff --git a/build.sh b/build.sh index 0a16b0b0e9..b70bfa83fe 100755 --- a/build.sh +++ b/build.sh @@ -1,3 +1,4 @@ #!/usr/bin/env bash -./gradlew clean build --parallel \ No newline at end of file +./mvnw install +(cd *-gradle-plugin; ./gradlew clean build --parallel) diff --git a/deploy.sh b/deploy.sh index 8c061c8b65..c92e3c1bdd 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -./gradlew clean build install && ./scripts/runTests.sh && ./gradlew uploadArchives -x test \ No newline at end of file +./mvnw deploy && (cd *-gradle-plugin; ./gradlew clean build install) && ./scripts/runTests.sh && (cd *-gradle-plugin; ./gradlew uploadArchives -x test) diff --git a/generateReadme.sh b/generateReadme.sh deleted file mode 100755 index 1638d7b172..0000000000 --- a/generateReadme.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -./gradlew :docs:clean :docs:generateReadme --configure-on-demand \ No newline at end of file diff --git a/publishDocs.sh b/publishDocs.sh deleted file mode 100755 index 17ed699b55..0000000000 --- a/publishDocs.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -./gradlew :docs:clean :docs:publishGhPages --configure-on-demand \ No newline at end of file