Search Gradle plugins

at.bxm.svntools

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 3.1 (latest)

Created 22 August 2020.

Provides various Subversion tasks that operate on a local SVN workspace

Add this plugin to your build using the plugins DSL:

plugins {
  id("at.bxm.svntools") version "3.1"
}

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