com.github.pndgz.maven-refresh
Owner: GordonDu
Clean mavenLocal SNAPSHOT jar
https://github.com/pndgz/maven-refresh
Sources: https://github.com/pndgz/maven-refresh
Version 1.0.1 (latest)
1.0.1
Created 19 December 2017.
Clean mavenLocal SNAPSHOT jar
Using the plugins DSL:
plugins {
id("com.github.pndgz.maven-refresh") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.pndgz:maven-refresh:1.0.1")
}
}
apply(plugin = "com.github.pndgz.maven-refresh")
Using the plugins DSL:
plugins {
id "com.github.pndgz.maven-refresh" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.pndgz:maven-refresh:1.0.1"
}
}
apply plugin: "com.github.pndgz.maven-refresh"