Description

This project contains only one Files:
'/src/main/resources/assemblies/opencms-module.xml'
This File describes how an OpenCms-Module should be assembly by Maven.

Usage

Add the following assembly configuration to your pom.xml:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.2-beta-5</version>
    <dependencies>
        <dependency>
            <groupId>at.infonova.opencms</groupId>
            <artifactId>opencms-module-assembly</artifactId>
            <version>1.0-B2</version>
        </dependency>
    </dependencies>
    <executions>
        <execution>
            <id>assemble</id>
            <phase>package</phase>
            <goals>
                <goal>single</goal>
            </goals>
            <configuration>
                <descriptorRefs>
                    <descriptorRef>opencms-module</descriptorRef>
                </descriptorRefs>
            </configuration>
        </execution>
    </executions>
</plugin>