搜索 Gradle 插件

版本 2.0(最新版)

2.0

创建于 2022年2月13日。

一个 Gradle 插件,使使用 OSGi 开发模块化应用程序变得完全容易

使用 插件 DSL

plugins {
  id("com.athaydes.osgi-ds") version "2.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.athaydes.gradle.osgi:osgi-run-core:2.0")
  }
}

apply(plugin = "com.athaydes.osgi-ds")

使用 插件 DSL

plugins {
  id "com.athaydes.osgi-ds" version "2.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.athaydes.gradle.osgi:osgi-run-core:2.0"
  }
}

apply plugin: "com.athaydes.osgi-ds"

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