搜索Gradle插件

版本 0.3.0 (最新)

0.3.0

创建日期:2024年6月8日。

Gradle插件,确保一级依赖项选择与其请求相同的版本。

使用 插件DSL

plugins {
  id("io.github.usefulness.maven-sympathy") version "0.3.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.usefulness:maven-sympathy:0.3.0")
  }
}

apply(plugin = "io.github.usefulness.maven-sympathy")

使用 插件DSL

plugins {
  id "io.github.usefulness.maven-sympathy" version "0.3.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.usefulness:maven-sympathy:0.3.0"
  }
}

apply plugin: "io.github.usefulness.maven-sympathy"

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