blob: ac03d0280826b7b457bebaf6addeed89c6fd596c [file] [log] [blame]
zheilbron738005d2014-03-21 14:50:17 -07001<!-- ! 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. ! -->
10<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12 <modelVersion>4.0.0</modelVersion>
13 <parent>
14 <artifactId>asterix</artifactId>
15 <groupId>edu.uci.ics.asterix</groupId>
16 <version>0.8.4-SNAPSHOT</version>
17 </parent>
18 <artifactId>asterix-doc</artifactId>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-site-plugin</artifactId>
24 <version>3.3</version>
25 <configuration>
26 <generateReports>false</generateReports>
27 </configuration>
28 <executions>
29 <execution>
30 <phase>package</phase>
31 <goals>
32 <goal>site</goal>
33 </goals>
34 </execution>
35 </executions>
36 </plugin>
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-resources-plugin</artifactId>
40 <version>2.6</version>
41 <executions>
42 <execution>
43 <phase>package</phase>
44 <goals>
45 <goal>copy-resources</goal>
46 </goals>
47 <inherited>false</inherited>
48 <configuration>
49 <outputDirectory>${project.build.directory}/site/download</outputDirectory>
50 <resources>
51 <resource>
52 <directory>../asterix-examples/src/main/resources/</directory>
53 <includes>
54 <include>asterix-sdk-stable.js</include>
55 </includes>
56 </resource>
57 </resources>
58 </configuration>
59 </execution>
60 </executions>
61 </plugin>
62 <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId>
63 <executions> <execution> <phase>package</phase> <goals> <goal>assembly</goal>
64 </goals> <inherited>false</inherited> <configuration> <descriptor>src/assembly/assembly.xml</descriptor>
65 </configuration> </execution> </executions> </plugin> -->
66 </plugins>
67 </build>
Till Westmanndb64c0c2013-05-14 11:48:15 -070068</project>