vinayakb | 391c908 | 2010-08-14 05:57:38 +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> |
vinayakb | 391c908 | 2010-08-14 05:57:38 +0000 | [diff] [blame] | 3 | <artifactId>hyracks-server</artifactId> |
vinayakb | 28cc83e | 2010-08-19 21:44:21 +0000 | [diff] [blame] | 4 | <parent> |
| 5 | <groupId>edu.uci.ics.hyracks</groupId> |
| 6 | <artifactId>hyracks</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 7 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 28cc83e | 2010-08-19 21:44:21 +0000 | [diff] [blame] | 8 | </parent> |
| 9 | |
vinayakb | 391c908 | 2010-08-14 05:57:38 +0000 | [diff] [blame] | 10 | <build> |
| 11 | <plugins> |
| 12 | <plugin> |
vinayakb | 95eb8a0 | 2011-09-29 22:54:50 +0000 | [diff] [blame] | 13 | <groupId>org.apache.maven.plugins</groupId> |
| 14 | <artifactId>maven-compiler-plugin</artifactId> |
| 15 | <version>2.0.2</version> |
| 16 | <configuration> |
| 17 | <source>1.6</source> |
| 18 | <target>1.6</target> |
| 19 | </configuration> |
| 20 | </plugin> |
| 21 | <plugin> |
vinayakb | 391c908 | 2010-08-14 05:57:38 +0000 | [diff] [blame] | 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.control.cc.CCDriver</mainClass> |
| 30 | <name>hyrackscc</name> |
| 31 | </program> |
| 32 | <program> |
| 33 | <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass> |
| 34 | <name>hyracksnc</name> |
| 35 | </program> |
vinayakb | 95eb8a0 | 2011-09-29 22:54:50 +0000 | [diff] [blame] | 36 | <program> |
| 37 | <mainClass>edu.uci.ics.hyracks.server.drivers.VirtualClusterDriver</mainClass> |
| 38 | <name>hyracks-virtual-cluster</name> |
| 39 | </program> |
vinayakb | 391c908 | 2010-08-14 05:57:38 +0000 | [diff] [blame] | 40 | </programs> |
| 41 | <repositoryLayout>flat</repositoryLayout> |
| 42 | <repositoryName>lib</repositoryName> |
| 43 | </configuration> |
| 44 | <phase>package</phase> |
| 45 | <goals> |
| 46 | <goal>assemble</goal> |
| 47 | </goals> |
| 48 | </execution> |
| 49 | </executions> |
| 50 | </plugin> |
| 51 | <plugin> |
| 52 | <artifactId>maven-assembly-plugin</artifactId> |
| 53 | <version>2.2-beta-5</version> |
| 54 | <executions> |
| 55 | <execution> |
| 56 | <configuration> |
| 57 | <descriptors> |
| 58 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 59 | </descriptors> |
| 60 | </configuration> |
| 61 | <phase>package</phase> |
| 62 | <goals> |
| 63 | <goal>attached</goal> |
| 64 | </goals> |
| 65 | </execution> |
| 66 | </executions> |
| 67 | </plugin> |
| 68 | </plugins> |
| 69 | </build> |
| 70 | <dependencies> |
| 71 | <dependency> |
| 72 | <groupId>edu.uci.ics.hyracks</groupId> |
| 73 | <artifactId>hyracks-control-cc</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 74 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 391c908 | 2010-08-14 05:57:38 +0000 | [diff] [blame] | 75 | <type>jar</type> |
| 76 | <scope>compile</scope> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>edu.uci.ics.hyracks</groupId> |
| 80 | <artifactId>hyracks-control-nc</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 81 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 391c908 | 2010-08-14 05:57:38 +0000 | [diff] [blame] | 82 | <type>jar</type> |
| 83 | <scope>compile</scope> |
| 84 | </dependency> |
vinayakb | 391c908 | 2010-08-14 05:57:38 +0000 | [diff] [blame] | 85 | </dependencies> |
| 86 | </project> |