Search Gradle plugins

Version 1.0.1-SNAPSHOT (latest)

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"

Learn how to apply plugins to subprojects