blob: 917e6d758e960332a0b995802f008791c5d5faf2 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb4df31102013-04-06 18:28:48 +000020<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">
21 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks.examples.btree</groupId>
vinayakb4df31102013-04-06 18:28:48 +000023 <artifactId>btreeserver</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070024 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000025 <name>btreeserver</name>
26
27 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070028 <groupId>org.apache.hyracks.examples</groupId>
vinayakb4df31102013-04-06 18:28:48 +000029 <artifactId>btree-example</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070030 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000031 </parent>
32
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.codehaus.mojo</groupId>
37 <artifactId>appassembler-maven-plugin</artifactId>
38 <version>1.3</version>
39 <executions>
40 <execution>
41 <configuration>
42 <programs>
43 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070044 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb4df31102013-04-06 18:28:48 +000045 <name>hyrackscc</name>
46 </program>
47 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070048 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb4df31102013-04-06 18:28:48 +000049 <name>hyracksnc</name>
50 </program>
51 </programs>
52 <repositoryLayout>flat</repositoryLayout>
53 <repositoryName>lib</repositoryName>
54 </configuration>
55 <phase>package</phase>
56 <goals>
57 <goal>assemble</goal>
58 </goals>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <artifactId>maven-assembly-plugin</artifactId>
64 <version>2.2-beta-5</version>
65 <executions>
66 <execution>
67 <configuration>
68 <descriptors>
69 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
70 </descriptors>
71 </configuration>
72 <phase>package</phase>
73 <goals>
74 <goal>attached</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79 </plugins>
80 </build>
81 <dependencies>
82 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070083 <groupId>org.apache.hyracks.examples.btree</groupId>
vinayakb4df31102013-04-06 18:28:48 +000084 <artifactId>btreehelper</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070085 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000086 <scope>compile</scope>
87 </dependency>
88 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070089 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000090 <artifactId>hyracks-control-cc</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070091 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000092 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070096 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000097 <artifactId>hyracks-control-nc</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070098 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000099 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 </dependencies>
103</project>