搜索 Gradle 插件

版本 0.5.6 (最新)

0.5.6

创建时间:2019 年 3 月 7 日。

Gradle 插件用于生成声明性服务 XML 文件

使用 插件 DSL

plugins {
  id("org.jayware.osgi-ds") version "0.5.6"
}

使用 旧的插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.jayware:gradle-osgi-ds:0.5.6")
  }
}

apply(plugin = "org.jayware.osgi-ds")

使用 插件 DSL

plugins {
  id "org.jayware.osgi-ds" version "0.5.6"
}

使用 旧的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.jayware:gradle-osgi-ds:0.5.6"
  }
}

apply plugin: "org.jayware.osgi-ds"

学习如何应用插件到子项目