├── .github └── workflows │ └── nebula.yml ├── .gitignore ├── .java-version ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gradle.lockfile ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── groovyCompile └── groovycConfig.groovy ├── main └── groovy │ └── nebula │ └── plugin │ └── scm │ └── git │ ├── GitScmExtension.groovy │ ├── GitScmPlugin.groovy │ └── providers │ └── GitProvider.groovy └── test └── groovy └── nebula └── plugin └── scm └── git ├── GitScmPluginSpec.groovy └── providers └── GitProviderSpec.groovy /.github/workflows/nebula.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/.github/workflows/nebula.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 1.8 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.lockfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/gradle.lockfile -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | systemProp.nebula.features.coreLockingSupport=true 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/groovyCompile/groovycConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/src/groovyCompile/groovycConfig.groovy -------------------------------------------------------------------------------- /src/main/groovy/nebula/plugin/scm/git/GitScmExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/src/main/groovy/nebula/plugin/scm/git/GitScmExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/nebula/plugin/scm/git/GitScmPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/src/main/groovy/nebula/plugin/scm/git/GitScmPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/nebula/plugin/scm/git/providers/GitProvider.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/src/main/groovy/nebula/plugin/scm/git/providers/GitProvider.groovy -------------------------------------------------------------------------------- /src/test/groovy/nebula/plugin/scm/git/GitScmPluginSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/src/test/groovy/nebula/plugin/scm/git/GitScmPluginSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/nebula/plugin/scm/git/providers/GitProviderSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-plugins/gradle-git-scm-plugin/HEAD/src/test/groovy/nebula/plugin/scm/git/providers/GitProviderSpec.groovy --------------------------------------------------------------------------------