You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by ie...@apache.org on 2009/04/29 19:15:26 UTC

svn commit: r769839 - in /incubator/shindig/branches/1.0.x-incubating/assembly: pom.xml src/main/assembly/source.xml

Author: ieb
Date: Wed Apr 29 17:15:25 2009
New Revision: 769839

URL: http://svn.apache.org/viewvc?rev=769839&view=rev
Log:
Added Source Assembly of the entire tree exactly as it is.

Added:
    incubator/shindig/branches/1.0.x-incubating/assembly/src/main/assembly/source.xml   (with props)
Modified:
    incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml

Modified: incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml?rev=769839&r1=769838&r2=769839&view=diff
==============================================================================
--- incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml (original)
+++ incubator/shindig/branches/1.0.x-incubating/assembly/pom.xml Wed Apr 29 17:15:25 2009
@@ -50,6 +50,7 @@
           <descriptors>
             <descriptor>src/main/assembly/php.xml</descriptor>
             <descriptor>src/main/assembly/java.xml</descriptor>
+            <descriptor>src/main/assembly/source.xml</descriptor>
           </descriptors>
           <tarLongFileMode>gnu</tarLongFileMode>
         </configuration>

Added: incubator/shindig/branches/1.0.x-incubating/assembly/src/main/assembly/source.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/branches/1.0.x-incubating/assembly/src/main/assembly/source.xml?rev=769839&view=auto
==============================================================================
--- incubator/shindig/branches/1.0.x-incubating/assembly/src/main/assembly/source.xml (added)
+++ incubator/shindig/branches/1.0.x-incubating/assembly/src/main/assembly/source.xml Wed Apr 29 17:15:25 2009
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?><!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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>source</id>
+  <formats>
+    <format>zip</format>
+    <format>tar.gz</format>
+    <format>tar.bz2</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  <fileSets>
+    <fileSet>
+      <outputDirectory>shindig-${pom.version}-source</outputDirectory>
+      <directory>../</directory>
+      <includes>
+        <include>**</include>
+      </includes>
+      <excludes>
+        <!-- scm -->
+        <exclude>**/.git/**</exclude>
+        <exclude>**/.svn/**</exclude>
+        <!-- IDE -->
+        <exclude>**/*.iws</exclude>
+        <exclude>**/*.ipr</exclude>
+        <exclude>**/*.iml</exclude>
+        <exclude>**/.project/**</exclude>
+        <exclude>**/.classpath/**</exclude>
+        <exclude>**/.settings/**</exclude>
+        <exclude>**/.externalToolBuilders/**</exclude>
+        <exclude>**/maven-eclipse.xml</exclude>
+        <exclude>**/.deployables/**</exclude>
+        <exclude>**/.wtpmodules/**</exclude>
+        <!-- maven -->
+        <exclude>**/target/**</exclude>
+        <!-- misc -->
+        <exclude>*.patch</exclude>
+        <exclude>*.diff</exclude>
+      </excludes>
+      <lineEnding>unix</lineEnding>
+    </fileSet>
+  </fileSets>
+</assembly>

Propchange: incubator/shindig/branches/1.0.x-incubating/assembly/src/main/assembly/source.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/shindig/branches/1.0.x-incubating/assembly/src/main/assembly/source.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml