Search Gradle plugins

uk.co.firstzero.AddOnJavaAntTasks

Tools and utilities written in Java to help in day-to-day work. CSV To Excel Converts a set of csv files into 1 Excel file. Each csv file is a sheet within excel CSV Diff Diffs two directories containing csv files. Each directory must have the same name and number of files as the other XML Clean Strips out fluff from the XML and manipulating the XML. The use case for this is, before comparison, sometimes XMLs need to be cleaned and renamed. The cleaned xmls can be diffed using xmlunittask. XML DIFF Diffs two directories containing xml files. Each directory must have the same name and number of files as the other READ BLOB Extracts Blobs from Database.SQL should contain a string name and then blob WEBDAV PULL Downloads files from a WEBDAV site, proxy configuration is supported WEBDAV PUSH Pushes files to a WEBDAV site, proxy configuration is supported

https://github.com/parj/AddOnJavaAntTasks

Version 2.8 (latest)

Created 30 August 2014.

Addon Ant Tasks

Using the plugins DSL:

plugins {
  id("uk.co.firstzero.AddOnJavaAntTasks") version "2.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("uk.co.firstzero:AddOnJavaAntTasks:2.8")
  }
}

apply(plugin = "uk.co.firstzero.AddOnJavaAntTasks")

Using the plugins DSL:

plugins {
  id "uk.co.firstzero.AddOnJavaAntTasks" version "2.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "uk.co.firstzero:AddOnJavaAntTasks:2.8"
  }
}

apply plugin: "uk.co.firstzero.AddOnJavaAntTasks"

Learn how to apply plugins to subprojects