搜索Gradle插件

版本 1.0.0-dev.6 (最新)

1.0.0-dev.6

创建于 2018年8月31日。

由于此插件版本仅使用JCenter中可找到的依赖项,因此JCenter成为指向Maven Central的永久重定向后,该版本将不再解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Gradle部署插件

使用插件DSL

plugins {
  id("com.intershop.gradle.component.installation") version "1.0.0-dev.6"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.intershop.gradle.component:component-installation-plugin:1.0.0-dev.6")
  }
}

apply(plugin = "com.intershop.gradle.component.installation")

使用插件DSL

plugins {
  id "com.intershop.gradle.component.installation" version "1.0.0-dev.6"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.intershop.gradle.component:component-installation-plugin:1.0.0-dev.6"
  }
}

apply plugin: "com.intershop.gradle.component.installation"

了解如何将插件应用到子项目中