blob: f1ad9ce2747959fec5406ddb4b77084b2c7d3a56 [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 !-->
vinayakb4df31102013-04-06 18:28:48 +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 <groupId>edu.uci.ics.hyracks.examples.tpch</groupId>
18 <artifactId>tpchserver</artifactId>
19 <name>tpchserver</name>
20
21 <parent>
22 <groupId>edu.uci.ics.hyracks</groupId>
23 <artifactId>tpch-example</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -070024 <version>0.2.8-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000025 </parent>
26
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>appassembler-maven-plugin</artifactId>
32 <version>1.3</version>
33 <executions>
34 <execution>
35 <configuration>
36 <programs>
37 <program>
38 <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass>
39 <name>hyrackscc</name>
40 </program>
41 <program>
42 <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass>
43 <name>hyracksnc</name>
44 </program>
45 </programs>
46 <repositoryLayout>flat</repositoryLayout>
47 <repositoryName>lib</repositoryName>
48 </configuration>
49 <phase>package</phase>
50 <goals>
51 <goal>assemble</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56 <plugin>
57 <artifactId>maven-assembly-plugin</artifactId>
58 <version>2.2-beta-5</version>
59 <executions>
60 <execution>
61 <configuration>
62 <descriptors>
63 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
64 </descriptors>
65 </configuration>
66 <phase>package</phase>
67 <goals>
68 <goal>attached</goal>
69 </goals>
70 </execution>
71 </executions>
72 </plugin>
73 </plugins>
74 </build>
75 <dependencies>
76 <dependency>
77 <groupId>edu.uci.ics.hyracks</groupId>
78 <artifactId>hyracks-dataflow-std</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -070079 <version>0.2.8-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000080 <scope>compile</scope>
81 </dependency>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
84 <artifactId>hyracks-data-std</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -070085 <version>0.2.8-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000086 </dependency>
87 <dependency>
88 <groupId>edu.uci.ics.hyracks</groupId>
89 <artifactId>hyracks-control-cc</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -070090 <version>0.2.8-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000091 <type>jar</type>
92 <scope>compile</scope>
93 </dependency>
94 <dependency>
95 <groupId>edu.uci.ics.hyracks</groupId>
96 <artifactId>hyracks-control-nc</artifactId>
buyingyi3e3cf872013-07-15 14:58:18 -070097 <version>0.2.8-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000098 <type>jar</type>
99 <scope>compile</scope>
100 </dependency>
101 </dependencies>
102</project>