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