CSV extension for the AEM Groovy Console. Adds binding and star import providers to facilitate printing CSV output in Groovy scripts using the Apache Commons CSV library.
csv.withFormat(CSVFormat.EXCEL) // defaults to CSVFormat.DEFAULT if not specified
csv.printRecord("First Name", "Last Name")
csv.printRecord("Mark", "Daugherty")
| Bundle Version | AEM Version(s) |
|---|---|
| 0.x.x | 6.3, 6.4, 6.5 |
- Add the bundle as a dependency to an existing AEM project:
<dependency>
<groupId>com.avionos.aem.groovyconsole.extensions</groupId>
<artifactId>groovy-console-csv-extension</artifactId>
<version>0.0.1</version>
<scope>provided</scope>
</dependency>Follows Semantic Versioning guidelines.