搜索Gradle插件

版本 1.0.1-SNAPSHOT(最新版)

1.0.1-SNAPSHOT

创建于2017年3月17日。

这是一个使用curl处理jboss json api以部署单个war的gradle插件。

使用插件DSL

plugins {
  id("com.github.newnewcoder.jboss-curl-gradle-plugin") version "1.0.1-SNAPSHOT"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/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")

使用插件DSL

plugins {
  id "com.github.newnewcoder.jboss-curl-gradle-plugin" version "1.0.1-SNAPSHOT"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/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"

了解如何将插件应用到子项目中