├── .gitignore ├── LICENSE ├── README.md ├── gradle ├── scripts │ ├── gradle_publish.gradle │ ├── gradle_publish_buildscript.gradle │ └── maven_publish.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src └── main ├── groovy └── com │ └── alexvasilkov │ └── gradle │ └── git │ ├── Credentials.groovy │ ├── Dependencies.groovy │ ├── EmptyExtension.groovy │ ├── GitDependency.groovy │ ├── SettingsExtension.groovy │ ├── SettingsPlugin.groovy │ └── utils │ ├── GitUtils.groovy │ ├── IdeaUtils.groovy │ ├── Log.groovy │ └── SshSystemReader.groovy └── resources └── META-INF └── gradle-plugins └── com.alexvasilkov.git-dependencies.properties /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | build 4 | *.iml 5 | local.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle/scripts/gradle_publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/gradle/scripts/gradle_publish.gradle -------------------------------------------------------------------------------- /gradle/scripts/gradle_publish_buildscript.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/gradle/scripts/gradle_publish_buildscript.gradle -------------------------------------------------------------------------------- /gradle/scripts/maven_publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/gradle/scripts/maven_publish.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/Credentials.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/Credentials.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/Dependencies.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/Dependencies.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/EmptyExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/EmptyExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/GitDependency.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/GitDependency.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/SettingsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/SettingsExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/SettingsPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/SettingsPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/utils/GitUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/utils/GitUtils.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/utils/IdeaUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/utils/IdeaUtils.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/utils/Log.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/utils/Log.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/alexvasilkov/gradle/git/utils/SshSystemReader.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/groovy/com/alexvasilkov/gradle/git/utils/SshSystemReader.groovy -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/com.alexvasilkov.git-dependencies.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexvasilkov/GradleGitDependenciesPlugin/HEAD/src/main/resources/META-INF/gradle-plugins/com.alexvasilkov.git-dependencies.properties --------------------------------------------------------------------------------