Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 2 | ! 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 Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 9 | ! |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 11 | ! |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 12 | ! 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 Maxon | 44ae40a | 2015-09-30 18:20:07 -0700 | [diff] [blame^] | 19 | <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 Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | 44ae40a | 2015-09-30 18:20:07 -0700 | [diff] [blame^] | 24 | <version>0.8.7-incubating</version> |
Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <url>http://asterixdb.incubator.apache.org/</url> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 28 | |
| 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 | |
Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 38 | <artifactId>asterix-doc</artifactId> |
| 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <groupId>org.apache.maven.plugins</groupId> |
| 43 | <artifactId>maven-site-plugin</artifactId> |
Ian Maxon | 5c058c6 | 2015-08-21 16:06:15 -0700 | [diff] [blame] | 44 | <version>3.4</version> |
Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 45 | <configuration> |
| 46 | <generateReports>false</generateReports> |
| 47 | </configuration> |
| 48 | <executions> |
| 49 | <execution> |
| 50 | <phase>package</phase> |
| 51 | <goals> |
| 52 | <goal>site</goal> |
| 53 | </goals> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
| 59 | |
| 60 | <distributionManagement> |
| 61 | <site> |
| 62 | <id>site</id> |
| 63 | <name>site</name> |
| 64 | <url>file:../../../../site/incubator-asterixdb-site</url> |
| 65 | </site> |
| 66 | </distributionManagement> |
| 67 | |
Till Westmann | db64c0c | 2013-05-14 11:48:15 -0700 | [diff] [blame] | 68 | </project> |