com.huanshankeji.nexus-staging
Owner:
Shreck Ye
Not implemented yet
https://github.com/huanshankeji/gradle-common
Using the plugins DSL:
plugins {
id("com.huanshankeji.nexus-staging") version "0.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.huanshankeji:kotlin-common-gradle-plugins:0.4.1")
}
}
apply(plugin = "com.huanshankeji.nexus-staging")
Using the plugins DSL:
plugins {
id "com.huanshankeji.nexus-staging" version "0.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.huanshankeji:kotlin-common-gradle-plugins:0.4.1"
}
}
apply plugin: "com.huanshankeji.nexus-staging"