Author: craigmcc
Date: Mon Jul 24 18:23:20 2006
New Revision: 425245
URL: http://svn.apache.org/viewvc?rev=425245&view=rev
Log:
Add assembly configuration for mailreader-jpa and shale-mailreader-jpa
modules.
SHALE-225
Added:
shale/framework/trunk/shale-apps/mailreader-jpa/src/main/assembly/
shale/framework/trunk/shale-apps/mailreader-jpa/src/main/assembly/dep.xml
(with props)
shale/framework/trunk/shale-apps/shale-mailreader-jpa/src/main/assembly/
shale/framework/trunk/shale-apps/shale-mailreader-jpa/src/main/assembly/dep.xml
(with props)
Modified:
shale/framework/trunk/shale-apps/mailreader-jpa/pom.xml
Modified: shale/framework/trunk/shale-apps/mailreader-jpa/pom.xml
URL:
http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/mailreader-jpa/pom.xml?rev=425245&r1=425244&r2=425245&view=diff
==============================================================================
--- shale/framework/trunk/shale-apps/mailreader-jpa/pom.xml (original)
+++ shale/framework/trunk/shale-apps/mailreader-jpa/pom.xml Mon Jul 24 18:23:20
2006
@@ -59,6 +59,16 @@
</plugin>
</plugins>
</pluginManagement>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/dep.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
</project>
Added: shale/framework/trunk/shale-apps/mailreader-jpa/src/main/assembly/dep.xml
URL:
http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/mailreader-jpa/src/main/assembly/dep.xml?rev=425245&view=auto
==============================================================================
--- shale/framework/trunk/shale-apps/mailreader-jpa/src/main/assembly/dep.xml
(added)
+++ shale/framework/trunk/shale-apps/mailreader-jpa/src/main/assembly/dep.xml
Mon Jul 24 18:23:20 2006
@@ -0,0 +1,62 @@
+<!--
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+-->
+<assembly>
+
+ <id>dist</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+ <includeBaseDirectory>true</includeBaseDirectory>
+
+ <fileSets>
+
+ <!-- Include top level directory files in the assembly -->
+ <fileSet>
+ <directory>.</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>pom.xml</include>
+ <include>*.txt</include>
+ </includes>
+ </fileSet>
+
+ <!-- Include the source code in the assembly -->
+ <fileSet>
+ <directory>./src</directory>
+ <outputDirectory>src/</outputDirectory>
+ </fileSet>
+
+ <!-- Include the website docs in the assembly -->
+ <fileSet>
+ <directory>./target/site</directory>
+ <outputDirectory>docs/</outputDirectory>
+ </fileSet>
+
+ <!-- Include the executable JAR in the assembly -->
+ <fileSet>
+ <directory>./target</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>*.jar</include>
+ </includes>
+ </fileSet>
+
+ </fileSets>
+
+</assembly>
\ No newline at end of file
Propchange:
shale/framework/trunk/shale-apps/mailreader-jpa/src/main/assembly/dep.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shale/framework/trunk/shale-apps/mailreader-jpa/src/main/assembly/dep.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added:
shale/framework/trunk/shale-apps/shale-mailreader-jpa/src/main/assembly/dep.xml
URL:
http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-mailreader-jpa/src/main/assembly/dep.xml?rev=425245&view=auto
==============================================================================
---
shale/framework/trunk/shale-apps/shale-mailreader-jpa/src/main/assembly/dep.xml
(added)
+++
shale/framework/trunk/shale-apps/shale-mailreader-jpa/src/main/assembly/dep.xml
Mon Jul 24 18:23:20 2006
@@ -0,0 +1,62 @@
+<!--
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+-->
+<assembly>
+
+ <id>dist</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+ <includeBaseDirectory>true</includeBaseDirectory>
+
+ <fileSets>
+
+ <!-- Include top level directory files in the assembly -->
+ <fileSet>
+ <directory>.</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>pom.xml</include>
+ <include>*.txt</include>
+ </includes>
+ </fileSet>
+
+ <!-- Include the source code in the assembly -->
+ <fileSet>
+ <directory>./src</directory>
+ <outputDirectory>src/</outputDirectory>
+ </fileSet>
+
+ <!-- Include the website docs in the assembly -->
+ <fileSet>
+ <directory>./target/site</directory>
+ <outputDirectory>docs/</outputDirectory>
+ </fileSet>
+
+ <!-- Include the web application in the assembly -->
+ <fileSet>
+ <directory>./target</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>*.war</include>
+ </includes>
+ </fileSet>
+
+ </fileSets>
+
+</assembly>
\ No newline at end of file
Propchange:
shale/framework/trunk/shale-apps/shale-mailreader-jpa/src/main/assembly/dep.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
shale/framework/trunk/shale-apps/shale-mailreader-jpa/src/main/assembly/dep.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL