diff --git a/scripts/major.sh b/scripts/major.sh new file mode 100755 index 0000000..e4641a2 --- /dev/null +++ b/scripts/major.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +./gradlew -Prelease.scope=major $@ \ No newline at end of file diff --git a/scripts/minor.sh b/scripts/minor.sh new file mode 100755 index 0000000..d1b96ac --- /dev/null +++ b/scripts/minor.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +./gradlew -Prelease.scope=minor $@ diff --git a/scripts/patch.sh b/scripts/patch.sh new file mode 100755 index 0000000..7cf5db9 --- /dev/null +++ b/scripts/patch.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +./gradlew -Prelease.scope=patch $@