Search Gradle plugins

Version 1.0.0 (latest)

Created 11 July 2020.

Controls ordering of task execution between projects.

Using the plugins DSL:

plugins {
  id("com.tomgregory.project-order") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.tomgregory:gradle-project-order-plugin:1.0.0")
  }
}

apply(plugin = "com.tomgregory.project-order")

Using the plugins DSL:

plugins {
  id "com.tomgregory.project-order" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.tomgregory:gradle-project-order-plugin:1.0.0"
  }
}

apply plugin: "com.tomgregory.project-order"

Learn how to apply plugins to subprojects