vinayakb | 0c86039 | 2012-10-06 18:47:20 +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>hyracks-yarn-client</artifactId> |
| 4 | <parent> |
| 5 | <groupId>edu.uci.ics.hyracks</groupId> |
| 6 | <artifactId>hyracks-yarn</artifactId> |
| 7 | <version>0.2.1-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | |
| 10 | <build> |
| 11 | <plugins> |
| 12 | <plugin> |
| 13 | <groupId>org.apache.maven.plugins</groupId> |
| 14 | <artifactId>maven-compiler-plugin</artifactId> |
| 15 | <version>2.0.2</version> |
| 16 | <configuration> |
madhusudancs@gmail.com | 8c6dcbc | 2013-03-06 01:19:58 +0000 | [diff] [blame^] | 17 | <source>1.7</source> |
| 18 | <target>1.7</target> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 19 | </configuration> |
| 20 | </plugin> |
| 21 | <plugin> |
| 22 | <groupId>org.codehaus.mojo</groupId> |
| 23 | <artifactId>appassembler-maven-plugin</artifactId> |
| 24 | <executions> |
| 25 | <execution> |
| 26 | <configuration> |
| 27 | <programs> |
| 28 | <program> |
| 29 | <mainClass>edu.uci.ics.hyracks.yarn.client.LaunchHyracksApplication</mainClass> |
| 30 | <name>launch-hyracks-application</name> |
| 31 | </program> |
| 32 | <program> |
| 33 | <mainClass>edu.uci.ics.hyracks.yarn.client.KillHyracksApplication</mainClass> |
| 34 | <name>kill-hyracks-application</name> |
| 35 | </program> |
| 36 | </programs> |
| 37 | <repositoryLayout>flat</repositoryLayout> |
| 38 | <repositoryName>lib</repositoryName> |
| 39 | </configuration> |
| 40 | <phase>package</phase> |
| 41 | <goals> |
| 42 | <goal>assemble</goal> |
| 43 | </goals> |
| 44 | </execution> |
| 45 | </executions> |
| 46 | </plugin> |
| 47 | <plugin> |
| 48 | <artifactId>maven-assembly-plugin</artifactId> |
| 49 | <version>2.2-beta-5</version> |
| 50 | <executions> |
| 51 | <execution> |
| 52 | <configuration> |
| 53 | <descriptors> |
| 54 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 55 | </descriptors> |
| 56 | </configuration> |
| 57 | <phase>package</phase> |
| 58 | <goals> |
| 59 | <goal>attached</goal> |
| 60 | </goals> |
| 61 | </execution> |
| 62 | </executions> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | <dependencies> |
| 67 | <dependency> |
| 68 | <groupId>args4j</groupId> |
| 69 | <artifactId>args4j</artifactId> |
| 70 | <version>2.0.16</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>edu.uci.ics.hyracks</groupId> |
| 74 | <artifactId>hyracks-yarn-common</artifactId> |
| 75 | <version>0.2.1-SNAPSHOT</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>edu.uci.ics.hyracks</groupId> |
| 79 | <artifactId>hyracks-yarn-am</artifactId> |
| 80 | <version>0.2.1-SNAPSHOT</version> |
| 81 | <type>zip</type> |
| 82 | <classifier>binary-assembly</classifier> |
| 83 | </dependency> |
| 84 | </dependencies> |
| 85 | </project> |