Adds the opensocial_proxied_content=1 query param to signed proxied content requests...
[shindig.git] / assembly / pom.xml
blob1a8257910ff5d3981b2db811813d7242afb499c0
1 <?xml version="1.0" encoding="UTF-8"?><!--
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements.  See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership.  The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License.  You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied.  See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18 -->
19 <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/xsd/maven-4.0.0.xsd">
20   <modelVersion>4.0.0</modelVersion>
22   <parent>
23     <groupId>org.apache.shindig</groupId>
24     <artifactId>shindig-parent</artifactId>
25     <version>1.1-SNAPSHOT</version>
26     <relativePath>../java/pom.xml</relativePath>
27   </parent>
29   <artifactId>shindig</artifactId>
30   <packaging>pom</packaging>
32   <name>Apache Shindig Distribution assembly</name>
33   <description>Assembles the PHP code base into a deployment package.</description>
35   <scm>
36     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/assembly
37     </connection>
38     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/assembly
39     </developerConnection>
40     <url>http://svn.apache.org/viewvc/incubator/shindig/trunk/assembly</url>
41   </scm>
43   <build>
44     <filters>
45       <filter>src/main/assembly/binary-src/README</filter>
46     </filters>
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             <descriptor>src/main/assembly/binary.xml</descriptor>
55           </descriptors>
56           <tarLongFileMode>gnu</tarLongFileMode>
57         </configuration>
58         <executions>
59           <execution>
60             <id>make-assembly</id> <!-- this is used for inheritance merges -->
61             <phase>package</phase> <!-- append to the packaging phase. -->
62             <goals>
63               <goal>attached</goal> <!-- goals == mojos -->
64             </goals>
65           </execution>
66         </executions>
67       </plugin>
68       <plugin>
69         <groupId>org.apache.geronimo.genesis.plugins</groupId>
70         <artifactId>tools-maven-plugin</artifactId>
71         <version>1.4</version>
72         <executions>
73           <execution>
74             <id>verify-legal-files</id>
75             <phase>verify</phase>
76             <goals>
77               <goal>verify-legal-files</goal>
78             </goals>
79             <configuration>
80               <strict>false</strict>
81             </configuration>
82           </execution>
83         </executions>
84       </plugin>
85     </plugins>
86   </build>
87   <dependencies>
88     <dependency>
89       <groupId>org.apache.shindig</groupId>
90       <artifactId>shindig-common</artifactId>
91       <version>${project.version}</version>
92     </dependency>
93     <dependency>
94       <groupId>org.apache.shindig</groupId>
95       <artifactId>shindig-gadgets</artifactId>
96       <version>${project.version}</version>
97     </dependency>
98     <dependency>
99       <groupId>org.apache.shindig</groupId>
100       <artifactId>shindig-social-api</artifactId>
101       <version>${project.version}</version>
102     </dependency>
103     <dependency>
104       <groupId>org.apache.shindig</groupId>
105       <artifactId>shindig-features</artifactId>
106       <version>${project.version}</version>
107     </dependency>
108     <dependency>
109       <groupId>org.apache.shindig</groupId>
110       <artifactId>shindig-server</artifactId>
111       <version>${project.version}</version>
112       <type>war</type>
113     </dependency>
114   </dependencies>
115 </project>