Module | Travis | Release | Description |
---|---|---|---|
cs-content-packager | Maven - CloudSlang content package helper. |
This repository contains the sources and a maven plugin that generates the metadata and downloads dependencies for existing content from Cloudslang/cs-content
Java JDK version >= 8
M2_HOME must be set to the path of the Maven installation (>=3.2.1)
This plugin can be added as another step in a Maven build (ThreadSafe) to generate content description properties file(s) and/or download content dependencies (for operations that use Java @Actions).
Maven plugin example:
[...]
<plugins>
<plugin>
<groupId>io.cloudslang.tools</groupId>
<artifactId>cs-content-packager-plugin</artifactId>
<version>RELEASE</version>
<executions>
<execution>
<id>extract metadata</id>
<phase>prepare-packages</phase>
<goals>
<goal>extract-description</goal>
</goals>
</execution>
<execution>
<id>copy content dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>copy-cloudslang-dependencies</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
[...]
Read our Contribution Guide here.