搜索Gradle插件

版本 0.5.1(最新版)

0.5.1

创建于 2024年3月15日。

Maven发布约定

使用 插件DSL

plugins {
  id("com.huanshankeji.maven-publish-conventions") version "0.5.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji:kotlin-common-gradle-plugins:0.5.1")
  }
}

apply(plugin = "com.huanshankeji.maven-publish-conventions")

使用 插件DSL

plugins {
  id "com.huanshankeji.maven-publish-conventions" version "0.5.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji:kotlin-common-gradle-plugins:0.5.1"
  }
}

apply plugin: "com.huanshankeji.maven-publish-conventions"

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