blob: a1392294ef89250d9cc9788919221f748e3e4ed8 [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>
Ian Maxone915e8c2015-07-01 17:03:31 -070017 <groupId>org.apache.hyracks.examples.btree</groupId>
vinayakb4df31102013-04-06 18:28:48 +000018 <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>
Ian Maxone915e8c2015-07-01 17:03:31 -070023 <groupId>org.apache.hyracks.examples</groupId>
vinayakb4df31102013-04-06 18:28:48 +000024 <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>
Ian Maxone915e8c2015-07-01 17:03:31 -070039 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb4df31102013-04-06 18:28:48 +000040 <name>hyrackscc</name>
41 </program>
42 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070043 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb4df31102013-04-06 18:28:48 +000044 <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>
Ian Maxone915e8c2015-07-01 17:03:31 -070078 <groupId>org.apache.hyracks.examples.btree</groupId>
vinayakb4df31102013-04-06 18:28:48 +000079 <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>
Ian Maxone915e8c2015-07-01 17:03:31 -070084 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000085 <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>
Ian Maxone915e8c2015-07-01 17:03:31 -070091 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000092 <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>