搜索Gradle插件

com.diffplug.osgi.equinoxlaunch

所有者: Ned Twigg

启动用户指定的任何插件集的equinox应用程序

https://github.com/diffplug/goomph

源代码: https://github.com/diffplug/goomph.git

使用插件DSL

plugins {
  id("com.diffplug.osgi.equinoxlaunch") version "4.0.1"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.diffplug.gradle:goomph:4.0.1")
  }
}

apply(plugin = "com.diffplug.osgi.equinoxlaunch")

使用插件DSL

plugins {
  id "com.diffplug.osgi.equinoxlaunch" version "4.0.1"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.diffplug.gradle:goomph:4.0.1"
  }
}

apply plugin: "com.diffplug.osgi.equinoxlaunch"

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