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.
Add this plugin to your build using the plugins DSL:
plugins {
id("uk.co.firstzero.AddOnJavaAntTasks") version "2.8"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("uk.co.firstzero.AddOnJavaAntTasks:uk.co.firstzero.AddOnJavaAntTasks.gradle.plugin:2.8") }
It can then be applied in the precompiled script plugin:plugins { id("uk.co.firstzero.AddOnJavaAntTasks") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("uk.co.firstzero.AddOnJavaAntTasks:uk.co.firstzero.AddOnJavaAntTasks.gradle.plugin:2.8") } } apply(plugin = "uk.co.firstzero.AddOnJavaAntTasks")
- Applying plugins to all subprojects .