com.github.newnewcoder.jboss-curl-gradle-plugin
Owner: newnewcoder
It's a gradle plugin using curl to process jboss json api to deploy single war.
https://github.com/newnewcoder/jboss-curl-gradle-plugin
Sources: https://github.com/newnewcoder/jboss-curl-gradle-plugin
Version 1.0.1-SNAPSHOT (latest)
1.0.1-SNAPSHOT
Created 17 March 2017.
It's a gradle plugin using curl to process jboss json api to deploy single war.
Using the plugins DSL:
plugins {
id("com.github.newnewcoder.jboss-curl-gradle-plugin") version "1.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.newnewcoder:jboss-curl-gradle-plugin:1.0.1-SNAPSHOT")
}
}
apply(plugin = "com.github.newnewcoder.jboss-curl-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.github.newnewcoder.jboss-curl-gradle-plugin" version "1.0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.newnewcoder:jboss-curl-gradle-plugin:1.0.1-SNAPSHOT"
}
}
apply plugin: "com.github.newnewcoder.jboss-curl-gradle-plugin"