blob: 4c4c79900783b17695f1467489c6396473977b81 [file] [log] [blame]
Till Westmannf55c4752015-05-29 12:23:07 -07001<!--
Till Westmann7e72dae2015-05-31 16:14:17 -07002 ! Copyright 2009-2013 by The Regents of the University of California
Till Westmannf55c4752015-05-29 12:23:07 -07003 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
Till Westmann7e72dae2015-05-31 16:14:17 -07007 ! http://www.apache.org/licenses/LICENSE-2.0
Till Westmannf55c4752015-05-29 12:23:07 -07008 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 ! -->
Till Westmann7e72dae2015-05-31 16:14:17 -070015<project xmlns="http://maven.apache.org/POM/4.0.0"
16 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Till Westmannf55c4752015-05-29 12:23:07 -070017 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <artifactId>asterix</artifactId>
21 <groupId>edu.uci.ics.asterix</groupId>
22 <version>0.8.7-SNAPSHOT</version>
23 </parent>
24
25 <url>http://asterixdb.incubator.apache.org/</url>
Ian4a816dc2014-11-26 15:46:32 -080026
27 <licenses>
28 <license>
29 <name>Apache License, Version 2.0</name>
30 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
31 <distribution>repo</distribution>
32 <comments>A business-friendly OSS license</comments>
33 </license>
34 </licenses>
35
Till Westmannf55c4752015-05-29 12:23:07 -070036 <artifactId>asterix-doc</artifactId>
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-site-plugin</artifactId>
42 <version>3.3</version>
43 <configuration>
44 <generateReports>false</generateReports>
45 </configuration>
46 <executions>
47 <execution>
48 <phase>package</phase>
49 <goals>
50 <goal>site</goal>
51 </goals>
52 </execution>
53 </executions>
54 </plugin>
55 </plugins>
56 </build>
57
58 <distributionManagement>
59 <site>
60 <id>site</id>
61 <name>site</name>
62 <url>file:../../../../site/incubator-asterixdb-site</url>
63 </site>
64 </distributionManagement>
65
Till Westmanndb64c0c2013-05-14 11:48:15 -070066</project>