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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.admc.ivyxml:com.admc.ivyxml.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.admc.ivyxml")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.admc.ivyxml:com.admc.ivyxml.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.admc.ivyxml")
  • Applying plugins to all subprojects .