blob: 178f8c93d7c7c247da26e19d9b861815e59434a8 [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.btree</groupId>
18 <artifactId>btreeserver</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080019 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000020 <name>btreeserver</name>
21
22 <parent>
23 <groupId>edu.uci.ics.hyracks.examples</groupId>
24 <artifactId>btree-example</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080025 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000026 </parent>
27
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.codehaus.mojo</groupId>
32 <artifactId>appassembler-maven-plugin</artifactId>
33 <version>1.3</version>
34 <executions>
35 <execution>
36 <configuration>
37 <programs>
38 <program>
39 <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass>
40 <name>hyrackscc</name>
41 </program>
42 <program>
43 <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass>
44 <name>hyracksnc</name>
45 </program>
46 </programs>
47 <repositoryLayout>flat</repositoryLayout>
48 <repositoryName>lib</repositoryName>
49 </configuration>
50 <phase>package</phase>
51 <goals>
52 <goal>assemble</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
57 <plugin>
58 <artifactId>maven-assembly-plugin</artifactId>
59 <version>2.2-beta-5</version>
60 <executions>
61 <execution>
62 <configuration>
63 <descriptors>
64 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
65 </descriptors>
66 </configuration>
67 <phase>package</phase>
68 <goals>
69 <goal>attached</goal>
70 </goals>
71 </execution>
72 </executions>
73 </plugin>
74 </plugins>
75 </build>
76 <dependencies>
77 <dependency>
78 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
79 <artifactId>btreehelper</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080080 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000081 <scope>compile</scope>
82 </dependency>
83 <dependency>
84 <groupId>edu.uci.ics.hyracks</groupId>
85 <artifactId>hyracks-control-cc</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080086 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000087 <type>jar</type>
88 <scope>compile</scope>
89 </dependency>
90 <dependency>
91 <groupId>edu.uci.ics.hyracks</groupId>
92 <artifactId>hyracks-control-nc</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080093 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000094 <type>jar</type>
95 <scope>compile</scope>
96 </dependency>
97 </dependencies>
98</project>