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