pom.xml
2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<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>