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> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 15 | <version>0.8.7-SNAPSHOT</version> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 16 | </parent> |
| 17 | <artifactId>asterix-examples</artifactId> |
zheilbron | bebb220 | 2014-03-28 14:36:52 -0700 | [diff] [blame] | 18 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame^] | 19 | <licenses> |
| 20 | <license> |
| 21 | <name>Apache License, Version 2.0</name> |
| 22 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 23 | <distribution>repo</distribution> |
| 24 | <comments>A business-friendly OSS license</comments> |
| 25 | </license> |
| 26 | </licenses> |
| 27 | |
| 28 | |
zheilbron | bebb220 | 2014-03-28 14:36:52 -0700 | [diff] [blame] | 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <artifactId>maven-assembly-plugin</artifactId> |
| 33 | <version>2.2-beta-5</version> |
| 34 | <executions> |
| 35 | <execution> |
zheilbron | 7dc280f | 2014-03-28 14:48:58 -0700 | [diff] [blame] | 36 | <id>admaql101-demo-binary-assembly</id> |
zheilbron | bebb220 | 2014-03-28 14:36:52 -0700 | [diff] [blame] | 37 | <configuration> |
| 38 | <appendAssemblyId>false</appendAssemblyId> |
zheilbron | 7dc280f | 2014-03-28 14:48:58 -0700 | [diff] [blame] | 39 | <finalName>admaql101-demo</finalName> |
| 40 | <descriptor>src/main/assembly/admaql101-demo-binary-assembly.xml</descriptor> |
zheilbron | bebb220 | 2014-03-28 14:36:52 -0700 | [diff] [blame] | 41 | </configuration> |
| 42 | <phase>package</phase> |
| 43 | <goals> |
| 44 | <goal>single</goal> |
| 45 | </goals> |
| 46 | </execution> |
| 47 | <execution> |
| 48 | <id>tweetbook-demo-binary-assembly</id> |
| 49 | <configuration> |
| 50 | <appendAssemblyId>false</appendAssemblyId> |
| 51 | <finalName>tweetbook-demo</finalName> |
| 52 | <descriptor>src/main/assembly/tweetbook-demo-binary-assembly.xml</descriptor> |
| 53 | </configuration> |
| 54 | <phase>package</phase> |
| 55 | <goals> |
| 56 | <goal>single</goal> |
| 57 | </goals> |
| 58 | </execution> |
| 59 | </executions> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </build> |
| 63 | <packaging>pom</packaging> |
zheilbron | 738005d | 2014-03-21 14:50:17 -0700 | [diff] [blame] | 64 | </project> |