Author: ieb
Date: Tue Nov 18 09:51:04 2008
New Revision: 718664
URL: http://svn.apache.org/viewvc?rev=718664&view=rev
Log:
Added assembly pom to build php artifacts, pending review by Chris to check
content is correct,
Added:
incubator/shindig/trunk/assembly/
incubator/shindig/trunk/assembly/pom.xml (with props)
incubator/shindig/trunk/assembly/src/
incubator/shindig/trunk/assembly/src/main/
incubator/shindig/trunk/assembly/src/main/assembly/
incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml (with props)
Added: incubator/shindig/trunk/assembly/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly/pom.xml?rev=718664&view=auto
==============================================================================
--- incubator/shindig/trunk/assembly/pom.xml (added)
+++ incubator/shindig/trunk/assembly/pom.xml Tue Nov 18 09:51:04 2008
@@ -0,0 +1,68 @@
+<?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.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.shindig</groupId>
+ <artifactId>shindig-parent</artifactId>
+ <version>1-SNAPSHOT</version>
+ <relativePath>../java/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>shindig-php</artifactId>
+ <packaging>pom</packaging>
+
+ <name>Apache Shindig PhP assembly</name>
+ <description>Assembles the PHP code base into a deployment
package.</description>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/assembly
+ </connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/assembly
+ </developerConnection>
+ <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly</url>
+ </scm>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/deploy.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id> <!-- this is used for inheritance merges -->
+ <phase>package</phase> <!-- append to the packaging phase. -->
+ <goals>
+ <goal>attached</goal> <!-- goals == mojos -->
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies/>
+</project>
Propchange: incubator/shindig/trunk/assembly/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Added: incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml
URL:
http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml?rev=718664&view=auto
==============================================================================
--- incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml (added)
+++ incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml Tue Nov 18
09:51:04 2008
@@ -0,0 +1,43 @@
+<?xml version="1.0"?>
+<assembly>
+ <id>binary</id>
+ <formats>
+ <format>zip</format>
+ <format>tar.gz</format>
+ <format>tar.bz2</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <fileSets>
+ <fileSet>
+ <outputDirectory>shindig-php</outputDirectory>
+ <directory>../</directory>
+ <includes>
+ <include>php/**</include>
+ <include>features/**</include>
+ <include>javascript/**</include>
+ <include>config/**</include>
+ <include>COMMITTERS</include>
+ <include>COPYING</include>
+ <include>LICENSE</include>
+ <include>NOTICE</include>
+ <include>README</include>
+ </includes>
+ <excludes>
+ <exclude>site/**</exclude>
+ <exclude>resources/**</exclude>
+ <exclude>etc/**</exclude>
+ <exclude>pom.xml</exclude>
+ <exclude>assembly/**</exclude>
+ <exclude>java/**</exclude>
+ <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>
\ No newline at end of file
Propchange: incubator/shindig/trunk/assembly/src/main/assembly/deploy.xml
------------------------------------------------------------------------------
svn:eol-style = native