搜索 Gradle 插件

使用 plugins DSL

plugins {
  id("io.freefair.sources-jar") version "5.3.3.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.freefair.gradle:maven-plugin:5.3.3.3")
  }
}

apply(plugin = "io.freefair.sources-jar")

使用 plugins DSL

plugins {
  id "io.freefair.sources-jar" version "5.3.3.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.freefair.gradle:maven-plugin:5.3.3.3"
  }
}

apply plugin: "io.freefair.sources-jar"

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