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. ! --> |
| 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-examples</artifactId> |
zheilbron | bebb220 | 2014-03-28 14:36:52 -0700 | [diff] [blame^] | 19 | |
| 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <artifactId>maven-assembly-plugin</artifactId> |
| 24 | <version>2.2-beta-5</version> |
| 25 | <executions> |
| 26 | <execution> |
| 27 | <id>adm101-demo-binary-assembly</id> |
| 28 | <configuration> |
| 29 | <appendAssemblyId>false</appendAssemblyId> |
| 30 | <finalName>adm101-demo</finalName> |
| 31 | <descriptor>src/main/assembly/adm101-demo-binary-assembly.xml</descriptor> |
| 32 | </configuration> |
| 33 | <phase>package</phase> |
| 34 | <goals> |
| 35 | <goal>single</goal> |
| 36 | </goals> |
| 37 | </execution> |
| 38 | <execution> |
| 39 | <id>tweetbook-demo-binary-assembly</id> |
| 40 | <configuration> |
| 41 | <appendAssemblyId>false</appendAssemblyId> |
| 42 | <finalName>tweetbook-demo</finalName> |
| 43 | <descriptor>src/main/assembly/tweetbook-demo-binary-assembly.xml</descriptor> |
| 44 | </configuration> |
| 45 | <phase>package</phase> |
| 46 | <goals> |
| 47 | <goal>single</goal> |
| 48 | </goals> |
| 49 | </execution> |
| 50 | </executions> |
| 51 | </plugin> |
| 52 | </plugins> |
| 53 | </build> |
| 54 | <packaging>pom</packaging> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 55 | </project> |