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)

3.20

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.jboss.gm:manipulation:3.20")
      }
    }
    
    apply(plugin = "org.jboss.gm.manipulation")
  • Applying plugins to all subprojects .