blob: 7ad6dc5a1f69bb0ea4f870698e1d211103a736f0 [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 Maxond2e1e892015-10-05 12:46:26 -070019<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">
Till Westmannf55c4752015-05-29 12:23:07 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon4a46ab82016-02-02 10:39:14 -080024 <version>0.8.8-incubating</version>
Till Westmannf55c4752015-05-29 12:23:07 -070025 </parent>
26
27 <url>http://asterixdb.incubator.apache.org/</url>
Ian4a816dc2014-11-26 15:46:32 -080028
29 <licenses>
30 <license>
31 <name>Apache License, Version 2.0</name>
32 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33 <distribution>repo</distribution>
34 <comments>A business-friendly OSS license</comments>
35 </license>
36 </licenses>
37
Ian Maxon6e5f18e2015-11-24 18:02:48 -080038 <properties>
39 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
40 </properties>
41
Till Westmannf55c4752015-05-29 12:23:07 -070042 <artifactId>asterix-doc</artifactId>
43 <build>
44 <plugins>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-site-plugin</artifactId>
Ian Maxon5c058c62015-08-21 16:06:15 -070048 <version>3.4</version>
Till Westmannf55c4752015-05-29 12:23:07 -070049 <configuration>
50 <generateReports>false</generateReports>
51 </configuration>
52 <executions>
53 <execution>
54 <phase>package</phase>
55 <goals>
56 <goal>site</goal>
57 </goals>
58 </execution>
59 </executions>
60 </plugin>
61 </plugins>
62 </build>
63
64 <distributionManagement>
65 <site>
66 <id>site</id>
67 <name>site</name>
68 <url>file:../../../../site/incubator-asterixdb-site</url>
69 </site>
70 </distributionManagement>
71
Till Westmanndb64c0c2013-05-14 11:48:15 -070072</project>