Since the cache implementations aren't really meant to be 100% production ready,...
[shindig.git] / assembly / pom.xml
blobbd3e94158b856602811a111732fb39b2f0e3d1d1
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements.  See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership.  The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License.  You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied.  See the License for the
17 specific language governing permissions and limitations
18 under the License.
19 -->
20 <project xmlns="http://maven.apache.org/POM/4.0.0"
21          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23   <modelVersion>4.0.0</modelVersion>
25   <parent>
26     <groupId>org.apache.shindig</groupId>
27     <artifactId>shindig-parent</artifactId>
28     <version>1-SNAPSHOT</version>
29     <relativePath>../java/pom.xml</relativePath>
30   </parent>
32   <artifactId>shindig</artifactId>
33   <packaging>pom</packaging>
35   <name>Apache Shindig PhP assembly</name>
36   <description>Assembles the PHP code base into a deployment package.</description>
38   <scm>
39     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/assembly
40     </connection>
41     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/assembly
42     </developerConnection>
43     <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly</url>
44   </scm>
46   <build>
47     <plugins>
48       <plugin>
49         <artifactId>maven-assembly-plugin</artifactId>
50         <configuration>
51           <descriptors>
52             <descriptor>src/main/assembly/php.xml</descriptor>
53             <descriptor>src/main/assembly/source.xml</descriptor>
54           </descriptors>
55         </configuration>
56         <executions>
57           <execution>
58             <id>make-assembly</id> <!-- this is used for inheritance merges -->
59             <phase>package</phase> <!-- append to the packaging phase. -->
60             <goals>
61               <goal>attached</goal> <!-- goals == mojos -->
62             </goals>
63           </execution>
64         </executions>
65       </plugin>
66       <plugin>
67         <groupId>org.apache.geronimo.genesis.plugins</groupId>
68         <artifactId>tools-maven-plugin</artifactId>
69         <version>1.4</version>
70         <executions>
71           <execution>
72             <id>verify-legal-files</id>
73             <phase>verify</phase>
74             <goals>
75               <goal>verify-legal-files</goal>
76             </goals>
77             <configuration>
78               <strict>false</strict>
79             </configuration>
80           </execution>
81         </executions>
82       </plugin>
83     </plugins>
84   </build>
85   <dependencies/>
86 </project>