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.3.1

1.3.1

Created 21 February 2016.

Tag dirty workspaces (thanks to @ptriller)

Add this plugin to your build using the plugins DSL:

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

See also:

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