Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

wlami/cdmpacker

Repository files navigation

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.