├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── DEPRECATED.md ├── HISTORY.md ├── LICENSE ├── README.md ├── RELEASE.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src ├── main ├── groovy │ └── com │ │ └── gladed │ │ └── androidgitversion │ │ └── AndroidGitVersion.groovy └── resources │ └── META-INF │ └── gradle-plugins │ └── com.gladed.androidgitversion.properties └── test └── groovy └── com └── gladed └── androidgitversion ├── AndroidGitVersionTest.groovy ├── CodeFormatTest.groovy ├── DeprecatedTest.groovy ├── FormatTest.groovy ├── MainTest.groovy ├── TagPatternTest.groovy ├── TagTest.groovy └── VariantTest.groovy /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/.travis.yml -------------------------------------------------------------------------------- /DEPRECATED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/DEPRECATED.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/RELEASE.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/groovy/com/gladed/androidgitversion/AndroidGitVersion.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/main/groovy/com/gladed/androidgitversion/AndroidGitVersion.groovy -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/com.gladed.androidgitversion.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/main/resources/META-INF/gradle-plugins/com.gladed.androidgitversion.properties -------------------------------------------------------------------------------- /src/test/groovy/com/gladed/androidgitversion/AndroidGitVersionTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/test/groovy/com/gladed/androidgitversion/AndroidGitVersionTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gladed/androidgitversion/CodeFormatTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/test/groovy/com/gladed/androidgitversion/CodeFormatTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gladed/androidgitversion/DeprecatedTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/test/groovy/com/gladed/androidgitversion/DeprecatedTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gladed/androidgitversion/FormatTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/test/groovy/com/gladed/androidgitversion/FormatTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gladed/androidgitversion/MainTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/test/groovy/com/gladed/androidgitversion/MainTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gladed/androidgitversion/TagPatternTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/test/groovy/com/gladed/androidgitversion/TagPatternTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gladed/androidgitversion/TagTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/test/groovy/com/gladed/androidgitversion/TagTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/gladed/androidgitversion/VariantTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gladed/gradle-android-git-version/HEAD/src/test/groovy/com/gladed/androidgitversion/VariantTest.groovy --------------------------------------------------------------------------------