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 2.1.2

2.1.2

Created 17 March 2017.

#38 - Upgraded to svnkit-1.8.15, removed workaround for SVNKIT-691

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("at.bxm.gradleplugins:gradle-svntools-plugin:2.1.2")
      }
    }
    
    apply(plugin = "at.bxm.svntools")
  • Applying plugins to all subprojects .