搜索 Gradle 插件

版本 2.7.5 (最新版)

2.7.5

创建于 2022 年 6 月 30 日。

ShipYak 不适合运输标记,将库标记为不可运输

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

apply plugin: "yakworks.not-shippable"

了解如何将插件应用到子项目中