Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 1 | <!-- |
Till Westmann | 7e72dae | 2015-05-31 16:14:17 -0700 | [diff] [blame^] | 2 | ! Copyright 2009-2013 by The Regents of the University of California |
Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 3 | ! 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 Westmann | 7e72dae | 2015-05-31 16:14:17 -0700 | [diff] [blame^] | 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 8 | ! |
| 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 Westmann | 7e72dae | 2015-05-31 16:14:17 -0700 | [diff] [blame^] | 15 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 16 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Till Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 17 | 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> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 26 | |
| 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 Westmann | f55c475 | 2015-05-29 12:23:07 -0700 | [diff] [blame] | 36 | <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 Westmann | db64c0c | 2013-05-14 11:48:15 -0700 | [diff] [blame] | 66 | </project> |