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