blob: d6120b070730569d0ece2fc78fe8c559c1c38a0b [file] [log] [blame]
Till Westmannf55c4752015-05-29 12:23:07 -07001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! 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
Till Westmannf55c4752015-05-29 12:23:07 -07009 !
Ian Maxon928bbd12015-09-14 17:12:48 -070010 ! http://www.apache.org/licenses/LICENSE-2.0
Till Westmannf55c4752015-05-29 12:23:07 -070011 !
Ian Maxon928bbd12015-09-14 17:12:48 -070012 ! 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 !-->
Ian Maxon49c50532015-09-30 23:18:01 -070019<project xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Till Westmannf55c4752015-05-29 12:23:07 -070022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070025 <groupId>org.apache.asterix</groupId>
Ian Maxon49c50532015-09-30 23:18:01 -070026 <version>0.8.7-SNAPSHOT</version>
Till Westmannf55c4752015-05-29 12:23:07 -070027 </parent>
28
29 <url>http://asterixdb.incubator.apache.org/</url>
Ian4a816dc2014-11-26 15:46:32 -080030
31 <licenses>
32 <license>
33 <name>Apache License, Version 2.0</name>
34 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
35 <distribution>repo</distribution>
36 <comments>A business-friendly OSS license</comments>
37 </license>
38 </licenses>
39
Till Westmannf55c4752015-05-29 12:23:07 -070040 <artifactId>asterix-doc</artifactId>
41 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-site-plugin</artifactId>
Ian Maxon5c058c62015-08-21 16:06:15 -070046 <version>3.4</version>
Till Westmannf55c4752015-05-29 12:23:07 -070047 <configuration>
48 <generateReports>false</generateReports>
49 </configuration>
50 <executions>
51 <execution>
52 <phase>package</phase>
53 <goals>
54 <goal>site</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
61
62 <distributionManagement>
63 <site>
64 <id>site</id>
65 <name>site</name>
66 <url>file:../../../../site/incubator-asterixdb-site</url>
67 </site>
68 </distributionManagement>
69
Till Westmanndb64c0c2013-05-14 11:48:15 -070070</project>