搜索 Gradle 插件

版本 1.2.14(最新版)

1.2.14

创建于 2024 年 8 月 12 日。

创建基于 elo 的 "MANIFEST.mf" 插件

使用 插件 DSL

plugins {
  id("com.elo.osgi.manifest") version "1.2.14"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.elo.gradle:flows-gradle-plugin:1.2.14")
  }
}

apply(plugin = "com.elo.osgi.manifest")

使用 插件 DSL

plugins {
  id "com.elo.osgi.manifest" version "1.2.14"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.elo.gradle:flows-gradle-plugin:1.2.14"
  }
}

apply plugin: "com.elo.osgi.manifest"

了解如何向子项目应用插件