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 1.5

1.5

Created 05 June 2016.

Minor enhancements (#21, #22, #23)

Add this plugin to your build using the plugins DSL:

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

See also:

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