com.nemosw.local-publish
Owner: NemoSW
Simple plugin for publish to local (depend maven-publish)
Sources: https://github.com/nemosrc/local-publish
Version 1.0 (latest)
1.0
Created 28 August 2018.
Simple plugin for publish to local (depend maven-publish)
Using the plugins DSL:
plugins {
id("com.nemosw.local-publish") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.nemosw:spigot-publish:1.0")
}
}
apply(plugin = "com.nemosw.local-publish")
Using the plugins DSL:
plugins {
id "com.nemosw.local-publish" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.nemosw:spigot-publish:1.0"
}
}
apply plugin: "com.nemosw.local-publish"