搜索Gradle插件

org.jboss.gm.manipulation

所有者: Nick Cross

插件读取从 ${project.rootDir}/manipulation.json 的校准数据,并配置构建和发布使用这些版本

https://project-ncl.github.io/gradle-manipulator/

源代码: https://github.com/project-ncl/gradle-manipulator/tree/master/manipulation/tree/master/analyzer

版本 3.17 (最新)

3.17

创建于 2024年5月29日。

插件读取从 ${project.rootDir}/manipulation.json 的校准数据,并配置构建和发布使用这些版本

使用 插件 DSL

plugins {
  id("org.jboss.gm.manipulation") version "3.17"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.jboss.gm:manipulation:3.17")
  }
}

apply(plugin = "org.jboss.gm.manipulation")

使用 插件 DSL

plugins {
  id "org.jboss.gm.manipulation" version "3.17"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.jboss.gm:manipulation:3.17"
  }
}

apply plugin: "org.jboss.gm.manipulation"

学习如何将插件应用于子项目