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
Version 1.6
Created 13 June 2016.
"svn-export" support added; "svn-checkout": depth option added; check status of remote SVN URLs
Add this plugin to your build using the plugins DSL:
plugins {
id("at.bxm.svntools") version "1.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("at.bxm.svntools:at.bxm.svntools.gradle.plugin:1.6") }
It can then be applied in the precompiled script plugin:plugins { id("at.bxm.svntools") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("at.bxm.svntools:at.bxm.svntools.gradle.plugin:1.6") } } apply(plugin = "at.bxm.svntools")
- Applying plugins to all subprojects .