Search Gradle plugins

Version 2.6.9

Created 16 June 2022.

ShipYak Not Shippable Marker, marks a lib as not shippable

Using the plugins DSL:

plugins {
  id("yakworks.not-shippable") version "2.6.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.yakworks:gradle-plugins:2.6.9")
  }
}

apply(plugin = "yakworks.not-shippable")

Using the plugins DSL:

plugins {
  id "yakworks.not-shippable" version "2.6.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.yakworks:gradle-plugins:2.6.9"
  }
}

apply plugin: "yakworks.not-shippable"

Learn how to apply plugins to subprojects