You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by vs...@apache.org on 2009/07/25 16:16:40 UTC

svn commit: r797769 - in /incubator/shindig/trunk: assembly/pom.xml assembly/src/main/assembly/java.xml assembly/src/main/assembly/php.xml assembly/src/main/assembly/source.xml java/NOTICE java/README php/NOTICE php/README

Author: vsiveton
Date: Sat Jul 25 14:16:40 2009
New Revision: 797769

URL: http://svn.apache.org/viewvc?rev=797769&view=rev
Log:
o filtering files
o updated README about war

Modified:
    incubator/shindig/trunk/assembly/pom.xml
    incubator/shindig/trunk/assembly/src/main/assembly/java.xml
    incubator/shindig/trunk/assembly/src/main/assembly/php.xml
    incubator/shindig/trunk/assembly/src/main/assembly/source.xml
    incubator/shindig/trunk/java/NOTICE
    incubator/shindig/trunk/java/README
    incubator/shindig/trunk/php/NOTICE
    incubator/shindig/trunk/php/README

Modified: incubator/shindig/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly/pom.xml?rev=797769&r1=797768&r2=797769&view=diff
==============================================================================
--- incubator/shindig/trunk/assembly/pom.xml (original)
+++ incubator/shindig/trunk/assembly/pom.xml Sat Jul 25 14:16:40 2009
@@ -55,6 +55,9 @@
             <descriptor>src/main/assembly/source.xml</descriptor>
           </descriptors>
           <tarLongFileMode>gnu</tarLongFileMode>
+          <filters>
+            <filter>${project.build.directory}/assemblyFilter.properties</filter>
+          </filters>
         </configuration>
         <executions>
           <execution>
@@ -103,6 +106,13 @@
                   <replacevalue><![CDATA[/../]]></replacevalue>
                 </replace>
 
+               <tstamp>
+                 <format property="year" pattern="yyyy" />
+               </tstamp>
+               <echo file="${project.build.directory}/assemblyFilter.properties">
+year=${year}
+               </echo>
+
               </tasks>
             </configuration>
             <goals>

Modified: incubator/shindig/trunk/assembly/src/main/assembly/java.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly/src/main/assembly/java.xml?rev=797769&r1=797768&r2=797769&view=diff
==============================================================================
--- incubator/shindig/trunk/assembly/src/main/assembly/java.xml (original)
+++ incubator/shindig/trunk/assembly/src/main/assembly/java.xml Sat Jul 25 14:16:40 2009
@@ -56,9 +56,19 @@
       <directory>../java</directory>
       <includes>
         <include>LICENSE</include>
-        <include>NOTICE</include>
-        <include>README</include>
       </includes>
     </fileSet>
   </fileSets>
+  <files>
+    <file>
+      <source>../java/README</source>
+      <outputDirectory>shindig-${pom.version}-java</outputDirectory>
+      <filtered>true</filtered>
+    </file>
+    <file>
+      <source>../java/NOTICE</source>
+      <outputDirectory>shindig-${pom.version}-java</outputDirectory>
+      <filtered>true</filtered>
+    </file>
+  </files>
 </assembly>

Modified: incubator/shindig/trunk/assembly/src/main/assembly/php.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly/src/main/assembly/php.xml?rev=797769&r1=797768&r2=797769&view=diff
==============================================================================
--- incubator/shindig/trunk/assembly/src/main/assembly/php.xml (original)
+++ incubator/shindig/trunk/assembly/src/main/assembly/php.xml Sat Jul 25 14:16:40 2009
@@ -95,6 +95,11 @@
         <exclude>*.tar.bz2</exclude>
         <exclude>*.sh</exclude>
         <exclude>*.bat</exclude>
+        <exclude>**/*.log</exclude>
+        <exclude>**/*.bak</exclude>
+
+        <exclude>NOTICE</exclude>
+        <exclude>README</exclude>
       </excludes>
     </fileSet>
     <!-- Using the temp container.php created by Maven using Antrun plugin to rewrite
@@ -109,4 +114,16 @@
       </excludes>
     </fileSet>
   </fileSets>
+  <files>
+    <file>
+      <source>../php/README</source>
+      <outputDirectory>shindig-${pom.version}-php</outputDirectory>
+      <filtered>true</filtered>
+    </file>
+    <file>
+      <source>../php/NOTICE</source>
+      <outputDirectory>shindig-${pom.version}-php</outputDirectory>
+      <filtered>true</filtered>
+    </file>
+  </files>
 </assembly>

Modified: incubator/shindig/trunk/assembly/src/main/assembly/source.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly/src/main/assembly/source.xml?rev=797769&r1=797768&r2=797769&view=diff
==============================================================================
--- incubator/shindig/trunk/assembly/src/main/assembly/source.xml (original)
+++ incubator/shindig/trunk/assembly/src/main/assembly/source.xml Sat Jul 25 14:16:40 2009
@@ -59,12 +59,6 @@
         <exclude>**/*~</exclude>
         <exclude>**/#*#</exclude>
         <exclude>**/%*%</exclude>
-        <exclude>**/*.jar</exclude>
-        <exclude>**/*.rar</exclude>
-        <exclude>**/*.tar</exclude>
-        <exclude>**/*.tar.bz2</exclude>
-        <exclude>**/*.tar.gz</exclude>
-        <exclude>**/*.zip</exclude>
         <exclude>**/samples/create.sql</exclude>
         <exclude>**/samples/drop.sql</exclude>
         <exclude>**/derby.log</exclude>

Modified: incubator/shindig/trunk/java/NOTICE
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/java/NOTICE?rev=797769&r1=797768&r2=797769&view=diff
==============================================================================
--- incubator/shindig/trunk/java/NOTICE (original)
+++ incubator/shindig/trunk/java/NOTICE Sat Jul 25 14:16:40 2009
@@ -1,5 +1,5 @@
 Apache Shindig
-Copyright 2009 The Apache Software Foundation
+Copyright ${year} The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

Modified: incubator/shindig/trunk/java/README
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/java/README?rev=797769&r1=797768&r2=797769&view=diff
==============================================================================
--- incubator/shindig/trunk/java/README (original)
+++ incubator/shindig/trunk/java/README Sat Jul 25 14:16:40 2009
@@ -40,15 +40,16 @@
   Installing Shindig Java
   -----------------------
 
-  Unzip the distribution archive, i.e. shindig-1.0-incubating-java.zip to 
+  Unzip the distribution archive, i.e. shindig-${project.version}-java.zip to 
   the directory you wish to install Shindig. 
 
   The following explains how to deploy the Shindig war file to Apache 
   Tomcat. If you are using an other container, please read its documentation
-  on how to proceed.
+  on how to proceed. You could download the war from:
+  http://repo1.maven.org/maven2/org/apache/shindig/shindig-server/${project.version}/shindig-server-${project.version}.war  
 
   The easiest way to deploy Shindig on Apache Tomcat is to rename the 
-  shindig-server-1.0-incubating.war file to ROOT.war and drop it in the 
+  shindig-server-${project.version}.war file to ROOT.war and drop it in the 
   Tomcat webapps.
   Be sure to delete $TOMCAT_HOME/webapps/ROOT dir before starting Tomcat.
 

Modified: incubator/shindig/trunk/php/NOTICE
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/NOTICE?rev=797769&r1=797768&r2=797769&view=diff
==============================================================================
--- incubator/shindig/trunk/php/NOTICE (original)
+++ incubator/shindig/trunk/php/NOTICE Sat Jul 25 14:16:40 2009
@@ -1,5 +1,5 @@
 Apache Shindig
-Copyright 2009 The Apache Software Foundation
+Copyright ${year} The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

Modified: incubator/shindig/trunk/php/README
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/README?rev=797769&r1=797768&r2=797769&view=diff
==============================================================================
--- incubator/shindig/trunk/php/README (original)
+++ incubator/shindig/trunk/php/README Sat Jul 25 14:16:40 2009
@@ -44,10 +44,10 @@
   Installing Shindig
   ------------------
 
-  Unzip the distribution archive, i.e. shindig-1.0-incubating-php.zip to 
+  Unzip the distribution archive, i.e. shindig-${project.version}-php.zip to 
   the web document root, e.g. /var/www/html. 
 
-  Rename the created shindig-1.0-incubating-php dir to shindig. 
+  Rename the created shindig-${project.version}-php dir to shindig. 
 
   a. Create a new virtual host