Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 867 Bytes

ApplyPlugin.md

File metadata and controls

23 lines (17 loc) · 867 Bytes

Applying the plugin

(see also the Gradle plugin portal page)

Binaries are hosted at Bintray and are available at the jcenter Maven repo.

Using the Gradle plugins DSL (Gradle 2.1 and above)

plugins {
  id "at.bxm.svntools" version "latest.release"
}
buildscript {
  repositories {
    jcenter()
  }
  dependencies {
    classpath "at.bxm.gradleplugins:gradle-svntools-plugin:latest.release"
  }
}
apply plugin: "at.bxm.svntools"