zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 1 | <!-- ! Copyright 2009-2013 by The Regents of the University of California |
| 2 | ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may |
| 3 | not use this file except in compliance with the License. ! you may obtain |
| 4 | a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0 |
| 5 | ! ! Unless required by applicable law or agreed to in writing, software ! |
| 6 | distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT |
| 7 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the |
| 8 | License for the specific language governing permissions and ! limitations |
| 9 | under the License. ! --> |
Zachary Heilbron | 8350912 | 2014-03-30 16:07:06 -0700 | [diff] [blame] | 10 | <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"> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <parent> |
| 13 | <artifactId>asterix</artifactId> |
| 14 | <groupId>edu.uci.ics.asterix</groupId> |
Zachary Heilbron | 762470b | 2014-03-30 16:07:09 -0700 | [diff] [blame] | 15 | <version>0.8.5-SNAPSHOT</version> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 16 | </parent> |
| 17 | <artifactId>asterix-doc</artifactId> |
| 18 | <build> |
| 19 | <plugins> |
| 20 | <plugin> |
| 21 | <groupId>org.apache.maven.plugins</groupId> |
| 22 | <artifactId>maven-site-plugin</artifactId> |
| 23 | <version>3.3</version> |
| 24 | <configuration> |
| 25 | <generateReports>false</generateReports> |
| 26 | </configuration> |
| 27 | <executions> |
| 28 | <execution> |
| 29 | <phase>package</phase> |
| 30 | <goals> |
| 31 | <goal>site</goal> |
| 32 | </goals> |
| 33 | </execution> |
| 34 | </executions> |
| 35 | </plugin> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-resources-plugin</artifactId> |
| 39 | <version>2.6</version> |
| 40 | <executions> |
| 41 | <execution> |
| 42 | <phase>package</phase> |
| 43 | <goals> |
| 44 | <goal>copy-resources</goal> |
| 45 | </goals> |
| 46 | <inherited>false</inherited> |
| 47 | <configuration> |
| 48 | <outputDirectory>${project.build.directory}/site/download</outputDirectory> |
| 49 | <resources> |
| 50 | <resource> |
| 51 | <directory>../asterix-examples/src/main/resources/</directory> |
| 52 | <includes> |
| 53 | <include>asterix-sdk-stable.js</include> |
| 54 | </includes> |
| 55 | </resource> |
zheilbron | bebb220 | 2014-03-28 14:36:52 -0700 | [diff] [blame] | 56 | <resource> |
| 57 | <directory>../asterix-examples/target/</directory> |
| 58 | <includes> |
zheilbron | 7dc280f | 2014-03-28 14:48:58 -0700 | [diff] [blame] | 59 | <include>admaql101-demo.zip</include> |
zheilbron | bebb220 | 2014-03-28 14:36:52 -0700 | [diff] [blame] | 60 | <include>tweetbook-demo.zip</include> |
| 61 | </includes> |
| 62 | </resource> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 63 | </resources> |
| 64 | </configuration> |
| 65 | </execution> |
| 66 | </executions> |
| 67 | </plugin> |
| 68 | <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> |
| 69 | <executions> <execution> <phase>package</phase> <goals> <goal>assembly</goal> |
| 70 | </goals> <inherited>false</inherited> <configuration> <descriptor>src/assembly/assembly.xml</descriptor> |
| 71 | </configuration> </execution> </executions> </plugin> --> |
| 72 | </plugins> |
| 73 | </build> |
Till Westmann | db64c0c | 2013-05-14 11:48:15 -0700 | [diff] [blame] | 74 | </project> |