Search Gradle plugins

com.admc.ivyxml

Support Ivy-native dependency files, traditionally 'ivy.xml'.

http://admc.com/projectdocs/gradle-ivyxml-plugin/readme.html

Version 1.0.0 (latest)

Created 19 October 2014.

Support Gradle 2.0 and 2.1. Set up to publish to Bintray.

Using the plugins DSL:

plugins {
  id("com.admc.ivyxml") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.admc:gradle-ivyxml-plugin:1.0.0")
  }
}

apply(plugin = "com.admc.ivyxml")

Using the plugins DSL:

plugins {
  id "com.admc.ivyxml" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.admc:gradle-ivyxml-plugin:1.0.0"
  }
}

apply plugin: "com.admc.ivyxml"

Learn how to apply plugins to subprojects