at.bxm.svntools
Owner: Martin E.
Provides various Subversion tasks that operate on a local SVN workspace. The implementation is based on SVNKit, which means that no SVN commandline client is required. See https://github.com/martoe/gradle-svntools-plugin for details.
https://github.com/martoe/gradle-svntools-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("at.bxm.svntools") version "0.1.DEV"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("at.bxm.gradleplugins:gradle-svntools-plugin:0.1.DEV") } } apply(plugin = "at.bxm.svntools")
- Applying plugins to all subprojects .