com.dede.svn-plugin
Owner: hsh_dede
Android assembleRelease Package and auto commit to SVN
https://github.com/hushenghao/android-SVN-Plugin
Version 0.1.2 (latest)
0.1.2
Created 06 September 2019.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Android assembleRelease Package and auto commit to SVN
Using the plugins DSL:
plugins {
id("com.dede.svn-plugin") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.dede.svnplugin:svn-plugin:0.1.2")
}
}
apply(plugin = "com.dede.svn-plugin")
Using the plugins DSL:
plugins {
id "com.dede.svn-plugin" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.dede.svnplugin:svn-plugin:0.1.2"
}
}
apply plugin: "com.dede.svn-plugin"