vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | <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/maven-v4_0_0.xsd"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <artifactId>asterix-dist</artifactId> |
| 4 | <parent> |
| 5 | <groupId>edu.uci.ics.asterix</groupId> |
| 6 | <artifactId>asterix</artifactId> |
| 7 | <version>0.0.4-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | |
| 10 | <build> |
| 11 | <plugins> |
| 12 | <plugin> |
| 13 | <artifactId>maven-assembly-plugin</artifactId> |
| 14 | <version>2.2-beta-5</version> |
| 15 | <executions> |
| 16 | <execution> |
| 17 | <configuration> |
| 18 | <descriptors> |
| 19 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 20 | </descriptors> |
| 21 | </configuration> |
| 22 | <phase>package</phase> |
| 23 | <goals> |
| 24 | <goal>attached</goal> |
| 25 | </goals> |
| 26 | </execution> |
| 27 | </executions> |
| 28 | </plugin> |
| 29 | </plugins> |
| 30 | </build> |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>edu.uci.ics.hyracks</groupId> |
| 34 | <artifactId>hyracks-server</artifactId> |
vinayakb | 88afc46 | 2012-10-01 15:56:21 +0000 | [diff] [blame] | 35 | <version>0.2.2-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 36 | <type>zip</type> |
| 37 | <classifier>binary-assembly</classifier> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>edu.uci.ics.hyracks</groupId> |
| 41 | <artifactId>hyracks-cli</artifactId> |
vinayakb | 88afc46 | 2012-10-01 15:56:21 +0000 | [diff] [blame] | 42 | <version>0.2.2-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 43 | <type>zip</type> |
| 44 | <classifier>binary-assembly</classifier> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>edu.uci.ics.asterix</groupId> |
| 48 | <artifactId>asterix-app</artifactId> |
| 49 | <version>0.0.4-SNAPSHOT</version> |
| 50 | <type>zip</type> |
| 51 | <classifier>binary-assembly</classifier> |
| 52 | </dependency> |
| 53 | </dependencies> |
| 54 | </project> |