blob: f691481c0b5a9998c4df2d80e3886c4718927691 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb0c860392012-10-06 18:47:20 +000015<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">
16 <modelVersion>4.0.0</modelVersion>
17 <artifactId>hyracks-server</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000018 <name>hyracks-server</name>
vinayakb0c860392012-10-06 18:47:20 +000019 <parent>
20 <groupId>edu.uci.ics.hyracks</groupId>
21 <artifactId>hyracks</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070022 <version>0.2.10-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000023 </parent>
24
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-compiler-plugin</artifactId>
30 <version>2.0.2</version>
31 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000032 <source>1.7</source>
33 <target>1.7</target>
34 <fork>true</fork>
vinayakb0c860392012-10-06 18:47:20 +000035 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.codehaus.mojo</groupId>
39 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000040 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000041 <executions>
42 <execution>
43 <configuration>
44 <programs>
45 <program>
46 <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass>
47 <name>hyrackscc</name>
48 </program>
49 <program>
50 <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass>
51 <name>hyracksnc</name>
52 </program>
53 <program>
54 <mainClass>edu.uci.ics.hyracks.server.drivers.VirtualClusterDriver</mainClass>
55 <name>hyracks-virtual-cluster</name>
56 </program>
57 </programs>
58 <repositoryLayout>flat</repositoryLayout>
59 <repositoryName>lib</repositoryName>
60 </configuration>
61 <phase>package</phase>
62 <goals>
63 <goal>assemble</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <artifactId>maven-assembly-plugin</artifactId>
70 <version>2.2-beta-5</version>
71 <executions>
72 <execution>
73 <configuration>
74 <descriptors>
75 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
76 </descriptors>
77 </configuration>
78 <phase>package</phase>
79 <goals>
80 <goal>attached</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
85 </plugins>
86 </build>
87 <dependencies>
88 <dependency>
89 <groupId>edu.uci.ics.hyracks</groupId>
90 <artifactId>hyracks-control-cc</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070091 <version>0.2.10-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000092 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
96 <groupId>edu.uci.ics.hyracks</groupId>
97 <artifactId>hyracks-control-nc</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -070098 <version>0.2.10-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000099 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 </dependencies>
103</project>