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.2.DEV"
}
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:0.2.DEV") }
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:0.2.DEV") } } apply(plugin = "at.bxm.svntools")
- Applying plugins to all subprojects .