pom.xml 2.6 KB
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.richfaces.sandbox</groupId>
        <artifactId>ui</artifactId>
        <version>3.3.4-SNAPSHOT</version>
    </parent>
    <groupId>org.richfaces.sandbox.ui</groupId>
    <artifactId>richfaces-assembly</artifactId>
    <name>assembly</name>
    <packaging>jar</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.richfaces.cdk</groupId>
                <artifactId>maven-cdk-plugin</artifactId>
                <version>3.3.4-SNAPSHOT</version>
                <configuration>
                    <library>
                        <prefix>org.richfaces</prefix>
                        <description>RichFaces Sandbox Components</description>
                        <taglibs>
                            <taglib>
                                <shortName>sandbox</shortName>
                                <taglib>sandbox</taglib>
                                <uri>http://richfaces.org/sandbox</uri>
                                <displayName>richfaces-sandbox</displayName>
                                <excludeModules>assembly</excludeModules>
                            </taglib>
                        </taglibs>
                    </library>
                    <excludeXcss>**/basic.xcss, **/basic_classes.xcss, **/basic_both.xcss, **/extended.xcss, **/extended_classes.xcss, **/extended_both.xcss, **/skin*.xcss, **/tiny_mce/**, **/org/richfaces/renderkit/html/css/simple.xcss, **/org/richfaces/renderkit/html/css/violetRays.xcss</excludeXcss>
                    <commonStyle>org/richfaces/skin.xcss</commonStyle>
                    <includeProjectDependencies>true</includeProjectDependencies>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>assembly</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                    <artifactId>maven-jar-plugin</artifactId>
                    <version>2.3.2</version>
                    <configuration>
                        <outputDirectory>
                            ${project.build.directory}/dist
                        </outputDirectory>
                    </configuration>
                </plugin>
        </plugins>
    </build>

    <dependencies />
</project>