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 1.6

Created 06 February 2020.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects