cdmpacker-maven-plugin

A maven plugin for generation of CDM parcels.

License

License

Categories

Categories

Maven Build Tools
GroupId

GroupId

de.wlami
ArtifactId

ArtifactId

cdmpacker-maven-plugin
Last Version

Last Version

0.2.2
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

cdmpacker-maven-plugin
A maven plugin for generation of CDM parcels.
Project URL

Project URL

https://wlami.github.io/cdmpacker/
Project Organization

Project Organization

wlami software
Source Code Management

Source Code Management

https://github.com/wlami/cdmpacker/tree/HEAD

Download cdmpacker-maven-plugin

How to add to project

<plugin>
    <groupId>de.wlami</groupId>
    <artifactId>cdmpacker-maven-plugin</artifactId>
    <version>0.2.2</version>
</plugin>

Dependencies

compile (4)

Group / Artifact Type Version
org.apache.maven : maven-core jar 3.5.0
org.apache.maven : maven-plugin-api jar 3.5.0
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.5.2
com.fasterxml.jackson.core : jackson-databind jar 2.9.9.1

provided (1)

Group / Artifact Type Version
org.projectlombok : lombok jar 1.18.2

test (5)

Group / Artifact Type Version
junit : junit jar 4.12
org.apache.maven : maven-artifact jar 3.5.0
org.apache.maven : maven-compat jar 3.5.0
org.apache.maven : maven-plugin-descriptor jar 2.2.1
org.apache.maven.plugin-testing : maven-plugin-testing-harness jar 3.3.0

Project Modules

There are no modules declared in this project.

cdmpacker-maven-plugin

Build Status Maven Central License Known Vulnerabilities

This plugin helps creating a parcel for deployment of artifacts to Cloudera Data Manager (CDM). This project is in no way related to Cloudera.

For documentation on parcels please see Cloudera Manager Extensions.

Requirements

This plugin requires Java 8 and Maven 3.5.0 or later.

Example

This example configures the plugin and generates files required for parcel generation.

<project>
 ...
 <build>
   <plugins>
     <plugin>
       <groupId>de.wlami</groupId>
       <artifactId>cdmpacker-maven-plugin</artifactId>
       <version>0.2.2</version>
       <executions>
         <execution>
           <goals>
             <goal>generate-parcel-json</goal>
           </goals>
         </execution>
       </executions>
     </plugin>
     ...
   </plugins>
 </build>
 ...
</project>

For a more complete example (override default values) see the example section on the plugin documentation.

Versions

Version
0.2.2
0.2.1
0.2.0
0.1.0