blob: 7b30e93d49a2993f80887ed1012f1aa390e2bfe8 [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. ! -->
Zachary Heilbron83509122014-03-30 16:07:06 -070010<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">
zheilbron738005d2014-03-21 14:50:17 -070011 <modelVersion>4.0.0</modelVersion>
12 <parent>
13 <artifactId>asterix</artifactId>
14 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070015 <version>0.8.7-SNAPSHOT</version>
zheilbron738005d2014-03-21 14:50:17 -070016 </parent>
17 <artifactId>asterix-examples</artifactId>
zheilbronbebb2202014-03-28 14:36:52 -070018
19 <build>
20 <plugins>
21 <plugin>
22 <artifactId>maven-assembly-plugin</artifactId>
23 <version>2.2-beta-5</version>
24 <executions>
25 <execution>
zheilbron7dc280f2014-03-28 14:48:58 -070026 <id>admaql101-demo-binary-assembly</id>
zheilbronbebb2202014-03-28 14:36:52 -070027 <configuration>
28 <appendAssemblyId>false</appendAssemblyId>
zheilbron7dc280f2014-03-28 14:48:58 -070029 <finalName>admaql101-demo</finalName>
30 <descriptor>src/main/assembly/admaql101-demo-binary-assembly.xml</descriptor>
zheilbronbebb2202014-03-28 14:36:52 -070031 </configuration>
32 <phase>package</phase>
33 <goals>
34 <goal>single</goal>
35 </goals>
36 </execution>
37 <execution>
38 <id>tweetbook-demo-binary-assembly</id>
39 <configuration>
40 <appendAssemblyId>false</appendAssemblyId>
41 <finalName>tweetbook-demo</finalName>
42 <descriptor>src/main/assembly/tweetbook-demo-binary-assembly.xml</descriptor>
43 </configuration>
44 <phase>package</phase>
45 <goals>
46 <goal>single</goal>
47 </goals>
48 </execution>
49 </executions>
50 </plugin>
51 </plugins>
52 </build>
53 <packaging>pom</packaging>
zheilbron738005d2014-03-21 14:50:17 -070054</project>