搜索Gradle插件

com.macwatters.elements-gradle

所有者: Scott MacWatters

Elements是一个用于Java应用程序的框架,允许使用Groovy配置原子(Java类或类组)。更多信息请见https://github.com/futehkao/elements。该插件添加了gradle任务,用于运行各种部署以及启动使用应用程序插件构建的应用程序的应用程序启动脚本。它还简化了将groovy文件从conf目录复制到各种位置的复制过程,使许多常见的元素构建任务变为易于阅读的DSL。

https://github.com/ScottMacWatters/elements-gradle-plugin

来源:https://github.com/ScottMacWatters/elements-gradle-plugin

版本 0.2.13(最新版)

0.2.13

创建于 2019年9月4日。

Elements是一个用于Java应用程序的框架,允许使用Groovy配置原子(Java类或类组)。更多信息请见https://github.com/futehkao/elements。该插件添加了gradle任务,用于运行各种部署以及启动使用应用程序插件构建的应用程序的应用程序启动脚本。它还简化了将groovy文件从conf目录复制到各种位置的复制过程,使许多常见的元素构建任务变为易于阅读的DSL。

使用plugins DSL

plugins {
  id("com.macwatters.elements-gradle") version "0.2.13"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.macwatters.elements.gradle:elements-gradle-plugin:0.2.13")
  }
}

apply(plugin = "com.macwatters.elements-gradle")

使用plugins DSL

plugins {
  id "com.macwatters.elements-gradle" version "0.2.13"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.macwatters.elements.gradle:elements-gradle-plugin:0.2.13"
  }
}

apply plugin: "com.macwatters.elements-gradle"

学习如何将插件应用于子项目