blob: 46659bfac162e478de4969c856919dfb38791375 [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>
Ian Maxonab556d12016-02-02 18:18:05 -080022 <artifactId>apache-asterixdb</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxonc1889c02016-02-10 15:26:24 -080024 <version>0.8.9-SNAPSHOT</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>
Ian Maxonab556d12016-02-02 18:18:05 -080061 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-deploy-plugin</artifactId>
64 <configuration>
65 <skip>true</skip>
66 </configuration>
67 </plugin>
Till Westmannf55c4752015-05-29 12:23:07 -070068 </plugins>
69 </build>
70
71 <distributionManagement>
72 <site>
73 <id>site</id>
74 <name>site</name>
75 <url>file:../../../../site/incubator-asterixdb-site</url>
76 </site>
77 </distributionManagement>
78
Ian Maxonab556d12016-02-02 18:18:05 -080079
Till Westmanndb64c0c2013-05-14 11:48:15 -070080</project>