Fixed a small issue when data pipelining == null on proxied content views
[shindig.git] / site / pom.xml
blob77b1421752046697ac245d334702e87755a848a2
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" 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">
21   <modelVersion>4.0.0</modelVersion>
23   <parent>
24     <groupId>org.apache.shindig</groupId>
25     <artifactId>shindig-project</artifactId>
26     <version>1.1-SNAPSHOT</version>
27   </parent>
29   <groupId>org.apache.shindig</groupId>
30   <artifactId>shindig-site</artifactId>
31   <packaging>pom</packaging>
33   <name>Shindig Documentation</name>
34   <url>http://incubator.apache.org/shindig</url>
36   <scm>
37     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/shindig/trunk/site</connection>
38     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/shindig/trunk/site</developerConnection>
39     <url>http://svn.apache.org/viewcvs.cgi/incubator/shindig/trunk/site</url>
40   </scm>
41   <issueManagement>
42     <system>jira</system>
43     <url>https://issues.apache.org/jira/browse/SHINDIG</url>
44   </issueManagement>
45   <distributionManagement>
46     <site>
47       <id>apache.website</id>
48       <url>scp://people.apache.org/www/incubator.apache.org/shindig</url>
49     </site>
50   </distributionManagement>
52   <!-- Needed for PDF plugin -->
53   <repositories>
54     <repository>
55       <id>apache.snapshots</id>
56       <name>Maven Snapshots</name>
57       <url>http://repository.apache.org/snapshots</url>
58       <releases>
59         <enabled>false</enabled>
60       </releases>
61     </repository>
62   </repositories>
63   <pluginRepositories>
64     <pluginRepository>
65       <id>apache.snapshots</id>
66       <name>Maven Plugin Snapshots</name>
67       <url>http://repository.apache.org/snapshots</url>
68       <releases>
69         <enabled>false</enabled>
70       </releases>
71     </pluginRepository>
72   </pluginRepositories>
74   <build>
75     <pluginManagement>
76       <plugins>
77         <plugin>
78           <groupId>org.apache.maven.plugins</groupId>
79           <artifactId>maven-site-plugin</artifactId>
80           <version>2.0</version>
81         </plugin>
82         <plugin>
83           <groupId>org.apache.maven.plugins</groupId>
84           <artifactId>maven-pdf-plugin</artifactId>
85           <version>1.0-SNAPSHOT</version>
86         </plugin>
87       </plugins>
88     </pluginManagement>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.maven.plugins</groupId>
92         <artifactId>maven-site-plugin</artifactId>
93         <configuration>
94           <outputEncoding>UTF-8</outputEncoding>
95         </configuration>
96         <executions>
97           <execution>
98             <id>jar</id>
99             <phase>site</phase>
100             <goals>
101               <goal>jar</goal>
102             </goals>
103             <configuration>
104               <jarOutputDirectory>${project.reporting.outputDirectory}</jarOutputDirectory>
105             </configuration>
106           </execution>
107         </executions>
108       </plugin>
109       <plugin>
110         <groupId>org.apache.maven.plugins</groupId>
111         <artifactId>maven-pdf-plugin</artifactId>
112         <executions>
113           <execution>
114             <id>pdf</id>
115             <phase>site</phase>
116             <goals>
117               <goal>pdf</goal>
118             </goals>
119             <configuration>
120               <outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
121             </configuration>
122           </execution>
123         </executions>
124       </plugin>
125     </plugins>
126   </build>
128   <reporting>
129     <excludeDefaults>true</excludeDefaults>
130     <plugins>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-project-info-reports-plugin</artifactId>
134         <version>2.1.1</version>
135         <reportSets>
136           <reportSet>
137             <reports>
138               <report>cim</report>
139               <report>issue-tracking</report>
140               <report>mailing-list</report>
141               <report>license</report>
142               <report>project-team</report>
143             </reports>
144           </reportSet>
145         </reportSets>
146       </plugin>
147     </plugins>
148   </reporting>
149 </project>