搜索Gradle插件

com.athaydes.osgi-run

A Gradle plugin to make the development of modular applications using OSGi completely painless

https://github.com/renatoathaydes/osgi-run

源代码: https://github.com/renatoathaydes/osgi-run

版本 2.0 (最新版)

2.0

创建于2022年2月13日。

A Gradle plugin to make the development of modular applications using OSGi completely painless

使用插件配置语言(plugins DSL)

plugins {
  id("com.athaydes.osgi-run") 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-run")

使用插件配置语言(plugins DSL)

plugins {
  id "com.athaydes.osgi-run" 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-run"

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