Search Gradle plugins

org.jboss.gm.manipulation

Plugin that reads the alignment data from ${project.rootDir}/manipulation.json and configures build and publishing to use those versions

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

Sources: https://github.com/project-ncl/gradle-manipulator/tree/master/manipulation/tree/master/analyzer

Version 3.20 (latest)

Created 04 October 2024.

Plugin that reads the alignment data from ${project.rootDir}/manipulation.json and configures build and publishing to use those versions

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.jboss.gm.manipulation:org.jboss.gm.manipulation.gradle.plugin:3.20")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.jboss.gm.manipulation")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jboss.gm.manipulation:org.jboss.gm.manipulation.gradle.plugin:3.20")
      }
    }
    
    apply(plugin = "org.jboss.gm.manipulation")
  • Applying plugins to all subprojects .