Author: ieb
Date: Sun Nov 23 16:03:38 2008
New Revision: 720071
URL: http://svn.apache.org/viewvc?rev=720071&view=rev
Log:
Fixed some inconsistancies in the assembly,
added a complete source package
Added:
incubator/shindig/trunk/DISCLAIMER
incubator/shindig/trunk/assembly/src/main/assembly/php.xml
- copied, changed from r720037,
incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml
incubator/shindig/trunk/assembly/src/main/assembly/source.xml (with props)
Removed:
incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml
Modified:
incubator/shindig/trunk/assembly/pom.xml
Added: incubator/shindig/trunk/DISCLAIMER
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/DISCLAIMER?rev=720071&view=auto
==============================================================================
--- incubator/shindig/trunk/DISCLAIMER (added)
+++ incubator/shindig/trunk/DISCLAIMER Sun Nov 23 16:03:38 2008
@@ -0,0 +1,6 @@
+Apache Shindig is an effort undergoing incubation at The Apache Software
Foundation (ASF)
+Incubation is required of all newly accepted projects until a further review
indicates that
+the infrastructure, communications, and decision making process have
stabilized in a manner
+consistent with other successful ASF projects. While incubation status is not
necessarily a
+reflection of the completeness or stability of the code, it does indicate that
the project
+has yet to be fully endorsed by the ASF.
Modified: incubator/shindig/trunk/assembly/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly/pom.xml?rev=720071&r1=720070&r2=720071&view=diff
==============================================================================
--- incubator/shindig/trunk/assembly/pom.xml (original)
+++ incubator/shindig/trunk/assembly/pom.xml Sun Nov 23 16:03:38 2008
@@ -29,7 +29,7 @@
<relativePath>../java/pom.xml</relativePath>
</parent>
- <artifactId>shindig-php</artifactId>
+ <artifactId>shindig</artifactId>
<packaging>pom</packaging>
<name>Apache Shindig PhP assembly</name>
@@ -49,7 +49,8 @@
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
- <descriptor>src/main/assembly/deploy.xml</descriptor>
+ <descriptor>src/main/assembly/php.xml</descriptor>
+ <descriptor>src/main/assembly/source.xml</descriptor>
</descriptors>
</configuration>
<executions>
@@ -62,6 +63,23 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.geronimo.genesis.plugins</groupId>
+ <artifactId>tools-maven-plugin</artifactId>
+ <version>1.4</version>
+ <executions>
+ <execution>
+ <id>verify-legal-files</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>verify-legal-files</goal>
+ </goals>
+ <configuration>
+ <strict>false</strict>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<dependencies/>
Copied: incubator/shindig/trunk/assembly/src/main/assembly/php.xml (from
r720037, incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml)
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly/src/main/assembly/php.xml?p2=incubator/shindig/trunk/assembly/src/main/assembly/php.xml&p1=incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml&r1=720037&r2=720071&rev=720071&view=diff
==============================================================================
--- incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml (original)
+++ incubator/shindig/trunk/assembly/src/main/assembly/php.xml Sun Nov 23
16:03:38 2008
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<assembly>
- <id>binary</id>
+ <id>php</id>
<formats>
<format>zip</format>
<format>tar.gz</format>
@@ -40,4 +40,4 @@
</excludes>
</fileSet>
</fileSets>
-</assembly>
\ No newline at end of file
+</assembly>
Added: 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=720071&view=auto
==============================================================================
--- incubator/shindig/trunk/assembly/src/main/assembly/source.xml (added)
+++ incubator/shindig/trunk/assembly/src/main/assembly/source.xml Sun Nov 23
16:03:38 2008
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<assembly>
+ <id>source</id>
+ <formats>
+ <format>zip</format>
+ <format>tar.gz</format>
+ <format>tar.bz2</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <fileSets>
+ <fileSet>
+ <outputDirectory>shindig</outputDirectory>
+ <directory>../</directory>
+ <includes>
+ <include>*/**</include>
+ </includes>
+ <excludes>
+ <exclude>**/.git/**</exclude>
+ <exclude>**/.svn/**</exclude>
+ <exclude>**/.project/**</exclude>
+ <exclude>**/.classpath/**</exclude>
+ <exclude>**/.settings/**</exclude>
+ <exclude>**/target/**</exclude>
+ <exclude>*.patch</exclude>
+ <exclude>*.diff</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+</assembly>
Propchange: incubator/shindig/trunk/assembly/src/main/assembly/source.xml
------------------------------------------------------------------------------
svn:eol-style = native