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