blob: c425c52db93debc33c20d783cd24537ff328ba59 [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 !
Ian Maxonbb5dc4c2016-02-02 18:16:30 -080010 ! http://www.apache.org/licenses/LICENSE-2.0
Ian Maxond8857792015-09-11 14:19:53 -070011 !
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
vinayakb4fa23432013-04-06 19:21:13 +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">
vinayakb4df31102013-04-06 18:28:48 +000021 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks.examples</groupId>
vinayakb4df31102013-04-06 18:28:48 +000023 <artifactId>hyracks-integration-tests</artifactId>
24 <name>hyracks-integration-tests</name>
25 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070026 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000027 <artifactId>hyracks-examples</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080028 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000029 </parent>
Ian Maxon5ae0df82015-10-14 10:45:19 -070030
vinayakb4df31102013-04-06 18:28:48 +000031 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
Ian Maxonbb5dc4c2016-02-02 18:16:30 -080035 <artifactId>maven-deploy-plugin</artifactId>
36 <configuration>
37 <skip>true</skip>
38 </configuration>
39 </plugin>
vinayakb4df31102013-04-06 18:28:48 +000040 </plugins>
41 </build>
Ian Maxon9e37c962015-11-25 07:38:37 -080042 <properties>
43 <root.dir>${basedir}/../../..</root.dir>
44 </properties>
vinayakb4df31102013-04-06 18:28:48 +000045 <dependencies>
46 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070047 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000048 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080049 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000050 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070054 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000055 <artifactId>hyracks-control-cc</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080056 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000057 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070061 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000062 <artifactId>hyracks-control-nc</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080063 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000064 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
67 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070068 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000069 <artifactId>hyracks-storage-am-btree</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080070 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000071 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070075 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000076 <artifactId>hyracks-storage-am-rtree</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080077 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000078 <type>jar</type>
79 <scope>compile</scope>
80 </dependency>
81 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070082 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000083 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080084 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000085 <type>jar</type>
86 <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-storage-am-lsm-rtree</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080091 <version>0.2.18-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-storage-am-lsm-invertedindex</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080098 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000099 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700103 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +0000104 <artifactId>hyracks-test-support</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -0800105 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +0000106 <type>jar</type>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700110 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +0000111 <artifactId>hyracks-data-std</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -0800112 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +0000113 </dependency>
114 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700115 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +0000116 <artifactId>hyracks-client</artifactId>
Ian Maxonb165aca2016-03-17 18:21:57 -0700117 <version>0.2.18-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +0000118 <type>jar</type>
119 <scope>compile</scope>
120 </dependency>
Yingyi Bu9295be12015-09-22 14:28:06 -0700121 <dependency>
122 <groupId>com.e-movimento.tinytools</groupId>
123 <artifactId>privilegedaccessor</artifactId>
124 <version>1.2.2</version>
125 <scope>test</scope>
126 </dependency>
vinayakb4df31102013-04-06 18:28:48 +0000127 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000128</project>