├── .gitignore ├── .idea ├── .name ├── caches │ ├── build_file_checksums.ser │ └── gradle_models.ser ├── compiler.xml ├── copyright │ ├── BreadMoirai__Ton_Ly_.xml │ └── profiles_settings.xml ├── dictionaries │ └── TonTL.xml ├── encodings.xml ├── jarRepositories.xml ├── libraries-with-intellij-classes.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── github-release.iml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── groovy │ └── com │ │ └── github │ │ └── breadmoirai │ │ └── githubreleaseplugin │ │ ├── ChangeLogSupplier.groovy │ │ ├── GithubApi.groovy │ │ ├── GithubReleaseExtension.groovy │ │ ├── GithubReleasePlugin.groovy │ │ ├── GithubReleaseTask.groovy │ │ ├── ast │ │ ├── ExtensionClass.groovy │ │ ├── ExtensionClassASTTransformation.groovy │ │ ├── ExtensionProperty.groovy │ │ ├── ExtensionPropertyASTTransformation.groovy │ │ └── ExtensionPropertyException.groovy │ │ └── exceptions │ │ └── PropertyNotSetException.groovy ├── java │ └── com │ │ └── github │ │ └── breadmoirai │ │ └── githubreleaseplugin │ │ └── annotations │ │ ├── GradlePluginExtension.java │ │ └── GradlePluginExtensionProcessor.java └── resources │ └── META-INF │ └── services │ ├── javax.annotation.processing.Processor │ └── org.codehaus.groovy.transform.ASTTransformation └── test └── groovy └── com └── github └── breadmoirai └── githubreleaseplugin ├── ASTTest.groovy ├── ExtensionTest.groovy ├── GithubReleaseFunctionalTest.groovy └── GithubReleaseUnitTest.groovy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | github-release -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/BreadMoirai__Ton_Ly_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/copyright/BreadMoirai__Ton_Ly_.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/TonTL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/dictionaries/TonTL.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/libraries-with-intellij-classes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/libraries-with-intellij-classes.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /github-release.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/github-release.iml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'github-release' 2 | -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ChangeLogSupplier.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ChangeLogSupplier.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/GithubApi.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/GithubApi.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleaseExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleaseExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleasePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleasePlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleaseTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleaseTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionClass.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionClass.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionClassASTTransformation.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionClassASTTransformation.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionProperty.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionProperty.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionPropertyASTTransformation.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionPropertyASTTransformation.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionPropertyException.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/ast/ExtensionPropertyException.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/breadmoirai/githubreleaseplugin/exceptions/PropertyNotSetException.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/groovy/com/github/breadmoirai/githubreleaseplugin/exceptions/PropertyNotSetException.groovy -------------------------------------------------------------------------------- /src/main/java/com/github/breadmoirai/githubreleaseplugin/annotations/GradlePluginExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/java/com/github/breadmoirai/githubreleaseplugin/annotations/GradlePluginExtension.java -------------------------------------------------------------------------------- /src/main/java/com/github/breadmoirai/githubreleaseplugin/annotations/GradlePluginExtensionProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/java/com/github/breadmoirai/githubreleaseplugin/annotations/GradlePluginExtensionProcessor.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/javax.annotation.processing.Processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/resources/META-INF/services/javax.annotation.processing.Processor -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/org.codehaus.groovy.transform.ASTTransformation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/main/resources/META-INF/services/org.codehaus.groovy.transform.ASTTransformation -------------------------------------------------------------------------------- /src/test/groovy/com/github/breadmoirai/githubreleaseplugin/ASTTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/test/groovy/com/github/breadmoirai/githubreleaseplugin/ASTTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/breadmoirai/githubreleaseplugin/ExtensionTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/test/groovy/com/github/breadmoirai/githubreleaseplugin/ExtensionTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleaseFunctionalTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/test/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleaseFunctionalTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleaseUnitTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BreadMoirai/github-release-gradle-plugin/HEAD/src/test/groovy/com/github/breadmoirai/githubreleaseplugin/GithubReleaseUnitTest.groovy --------------------------------------------------------------------------------