搜索Gradle插件

版本 0.5.1 (最新版)

0.5.1

创建于2024年3月15日。

尚未实现

使用插件DSL

plugins {
  id("com.huanshankeji.nexus-staging") 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.nexus-staging")

使用插件DSL

plugins {
  id "com.huanshankeji.nexus-staging" 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.nexus-staging"

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