Author: manaRH
Date: 2012-05-29 04:15:38 -0400 (Tue, 29 May 2012)
New Revision: 14798
Added:
branches/enterprise/WFK-2_0/distribution/src/main/assembly/demo.xml
Modified:
branches/enterprise/WFK-2_0/distribution/pom.xml
Log:
assembling of examples into demo.zip
Modified: branches/enterprise/WFK-2_0/distribution/pom.xml
===================================================================
--- branches/enterprise/WFK-2_0/distribution/pom.xml 2012-05-29 08:15:28 UTC (rev 14797)
+++ branches/enterprise/WFK-2_0/distribution/pom.xml 2012-05-29 08:15:38 UTC (rev 14798)
@@ -47,6 +47,7 @@
<descriptors>
<descriptor>src/main/assembly/dist.xml</descriptor>
<descriptor>src/main/assembly/src.xml</descriptor>
+
<descriptor>src/main/assembly/demo.xml</descriptor>
</descriptors>
<appendAssemblyId>true</appendAssemblyId>
</configuration>
Added: branches/enterprise/WFK-2_0/distribution/src/main/assembly/demo.xml
===================================================================
--- branches/enterprise/WFK-2_0/distribution/src/main/assembly/demo.xml
(rev 0)
+++ branches/enterprise/WFK-2_0/distribution/src/main/assembly/demo.xml 2012-05-29
08:15:38 UTC (rev 14798)
@@ -0,0 +1,25 @@
+<assembly
+
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembl...
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-p...
http://maven.apache.org/xsd/assembly-2.2.xsd">
+
+ <id>demo</id>
+ <formats>
+ <format>zip</format>
+ </formats>
+ <includeBaseDirectory>true</includeBaseDirectory>
+
+ <!-- Add distribution files -->
+ <fileSets>
+ <!-- Examples only -->
+ <fileSet>
+ <directory>../examples-ee6</directory>
+ <outputDirectory>./examples</outputDirectory>
+ <useDefaultExcludes>true</useDefaultExcludes>
+ <excludes>
+ <exclude>**/*.log</exclude>
+ <exclude>**/${project.build.directory}/**</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+</assembly>