blob: d934e8cca718646f69aeca077cf5b327667b4ac3 [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 !
Michael Blowd6cf6412016-06-30 02:44:35 -040010 ! 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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070021 <modelVersion>4.0.0</modelVersion>
22 <groupId>org.apache.hyracks.examples</groupId>
23 <artifactId>hyracks-integration-tests</artifactId>
24 <name>hyracks-integration-tests</name>
25 <parent>
26 <groupId>org.apache.hyracks</groupId>
27 <artifactId>hyracks-examples</artifactId>
28 <version>0.2.18-SNAPSHOT</version>
29 </parent>
Ian Maxon5ae0df82015-10-14 10:45:19 -070030
Michael Blowb4c1fb02016-05-09 15:41:00 -070031 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-deploy-plugin</artifactId>
36 <configuration>
37 <skip>true</skip>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42 <properties>
43 <root.dir>${basedir}/../../..</root.dir>
44 </properties>
45 <dependencies>
46 <dependency>
47 <groupId>org.apache.hyracks</groupId>
48 <artifactId>hyracks-dataflow-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040049 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 </dependency>
51 <dependency>
52 <groupId>org.apache.hyracks</groupId>
53 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040054 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070055 </dependency>
56 <dependency>
57 <groupId>org.apache.hyracks</groupId>
58 <artifactId>hyracks-control-nc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040059 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070060 </dependency>
61 <dependency>
62 <groupId>org.apache.hyracks</groupId>
63 <artifactId>hyracks-storage-am-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040064 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070065 </dependency>
66 <dependency>
67 <groupId>org.apache.hyracks</groupId>
68 <artifactId>hyracks-storage-am-rtree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040069 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070070 </dependency>
71 <dependency>
72 <groupId>org.apache.hyracks</groupId>
73 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040074 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070075 </dependency>
76 <dependency>
77 <groupId>org.apache.hyracks</groupId>
78 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040079 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070080 </dependency>
81 <dependency>
82 <groupId>org.apache.hyracks</groupId>
83 <artifactId>hyracks-test-support</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040084 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070085 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.hyracks</groupId>
89 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040090 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070091 </dependency>
92 <dependency>
93 <groupId>org.apache.hyracks</groupId>
94 <artifactId>hyracks-client</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040095 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070096 </dependency>
97 <dependency>
98 <groupId>com.e-movimento.tinytools</groupId>
99 <artifactId>privilegedaccessor</artifactId>
100 <version>1.2.2</version>
101 <scope>test</scope>
102 </dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400103 <dependency>
104 <groupId>org.mockito</groupId>
105 <artifactId>mockito-all</artifactId>
106 <version>2.0.2-beta</version>
107 <scope>test</scope>
108 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400109 <dependency>
110 <groupId>org.apache.hyracks</groupId>
111 <artifactId>hyracks-dataflow-common</artifactId>
112 <version>${project.version}</version>
113 </dependency>
114 <dependency>
115 <groupId>commons-io</groupId>
116 <artifactId>commons-io</artifactId>
117 <version>2.5</version>
118 </dependency>
119 <dependency>
120 <groupId>org.apache.hyracks</groupId>
121 <artifactId>hyracks-control-common</artifactId>
122 <version>${project.version}</version>
123 </dependency>
124 <dependency>
125 <groupId>org.apache.hyracks</groupId>
126 <artifactId>hyracks-storage-am-common</artifactId>
127 <version>${project.version}</version>
128 </dependency>
129 <dependency>
130 <groupId>org.apache.hyracks</groupId>
131 <artifactId>hyracks-storage-am-lsm-common</artifactId>
132 <version>${project.version}</version>
133 </dependency>
134 <dependency>
135 <groupId>org.apache.hyracks</groupId>
136 <artifactId>hyracks-api</artifactId>
137 <version>${project.version}</version>
138 </dependency>
139 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400140 <groupId>junit</groupId>
141 <artifactId>junit</artifactId>
142 <version>4.12</version>
143 <scope>test</scope>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.hyracks</groupId>
147 <artifactId>hyracks-storage-common</artifactId>
148 <version>${project.version}</version>
149 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800150 <dependency>
151 <groupId>com.fasterxml.jackson.core</groupId>
152 <artifactId>jackson-databind</artifactId>
153 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700154 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000155</project>