blob: fe2647c4733555f4ad090bf2dd089f8d13c690bd [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>
Ian Maxonf20e64f2024-03-05 00:02:55 -080028 <version>0.3.10-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070029 </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>
Michael Blow5e17af22017-02-02 10:00:44 -050040 <plugin>
41 <groupId>org.apache.rat</groupId>
42 <artifactId>apache-rat-plugin</artifactId>
43 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050044 <excludes combine.children="append">
Michael Blow5e17af22017-02-02 10:00:44 -050045 <exclude>data/**</exclude>
46 </excludes>
47 </configuration>
48 </plugin>
Ian Maxon0cde5152025-02-20 14:22:00 -080049 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-surefire-plugin</artifactId>
52 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070053 </plugins>
54 </build>
55 <properties>
56 <root.dir>${basedir}/../../..</root.dir>
57 </properties>
58 <dependencies>
59 <dependency>
60 <groupId>org.apache.hyracks</groupId>
61 <artifactId>hyracks-dataflow-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040062 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040063 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070064 </dependency>
65 <dependency>
66 <groupId>org.apache.hyracks</groupId>
67 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040068 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040069 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070070 </dependency>
71 <dependency>
72 <groupId>org.apache.hyracks</groupId>
73 <artifactId>hyracks-control-nc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040074 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040075 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070076 </dependency>
77 <dependency>
78 <groupId>org.apache.hyracks</groupId>
Till Westmann55dd6ff2017-02-19 20:18:51 -080079 <artifactId>hyracks-storage-common</artifactId>
80 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040081 <scope>test</scope>
Till Westmann55dd6ff2017-02-19 20:18:51 -080082 </dependency>
83 <dependency>
84 <groupId>org.apache.hyracks</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070085 <artifactId>hyracks-storage-am-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040086 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040087 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070088 </dependency>
89 <dependency>
90 <groupId>org.apache.hyracks</groupId>
91 <artifactId>hyracks-storage-am-rtree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040092 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040093 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070094 </dependency>
95 <dependency>
96 <groupId>org.apache.hyracks</groupId>
97 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040098 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040099 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700100 </dependency>
101 <dependency>
102 <groupId>org.apache.hyracks</groupId>
103 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400104 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400105 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700106 </dependency>
107 <dependency>
108 <groupId>org.apache.hyracks</groupId>
109 <artifactId>hyracks-test-support</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400110 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.hyracks</groupId>
115 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400116 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400117 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700118 </dependency>
119 <dependency>
120 <groupId>org.apache.hyracks</groupId>
121 <artifactId>hyracks-client</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400122 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400123 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700124 </dependency>
125 <dependency>
126 <groupId>com.e-movimento.tinytools</groupId>
127 <artifactId>privilegedaccessor</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700128 <scope>test</scope>
129 </dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400130 <dependency>
131 <groupId>org.mockito</groupId>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700132 <artifactId>mockito-core</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400133 <scope>test</scope>
134 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400135 <dependency>
136 <groupId>org.apache.hyracks</groupId>
137 <artifactId>hyracks-dataflow-common</artifactId>
138 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400139 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400140 </dependency>
141 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400142 <groupId>org.apache.hyracks</groupId>
143 <artifactId>hyracks-control-common</artifactId>
144 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400145 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400146 </dependency>
147 <dependency>
148 <groupId>org.apache.hyracks</groupId>
149 <artifactId>hyracks-storage-am-common</artifactId>
150 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400151 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400152 </dependency>
153 <dependency>
154 <groupId>org.apache.hyracks</groupId>
155 <artifactId>hyracks-storage-am-lsm-common</artifactId>
156 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400157 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400158 </dependency>
159 <dependency>
160 <groupId>org.apache.hyracks</groupId>
161 <artifactId>hyracks-api</artifactId>
162 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400163 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400164 </dependency>
165 <dependency>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300166 <groupId>org.apache.hyracks</groupId>
167 <artifactId>hyracks-ipc</artifactId>
168 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400169 <scope>test</scope>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300170 </dependency>
171 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400172 <groupId>junit</groupId>
173 <artifactId>junit</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400174 <scope>test</scope>
175 </dependency>
176 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800177 <groupId>commons-io</groupId>
178 <artifactId>commons-io</artifactId>
179 <scope>test</scope>
180 </dependency>
181 <dependency>
182 <groupId>org.apache.commons</groupId>
183 <artifactId>commons-lang3</artifactId>
184 <scope>test</scope>
185 </dependency>
186 <dependency>
187 <groupId>org.apache.httpcomponents</groupId>
188 <artifactId>httpcore</artifactId>
189 <scope>test</scope>
190 </dependency>
191 <dependency>
192 <groupId>org.apache.httpcomponents</groupId>
193 <artifactId>httpclient</artifactId>
194 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400195 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800196 <dependency>
197 <groupId>com.fasterxml.jackson.core</groupId>
198 <artifactId>jackson-databind</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400199 <scope>test</scope>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800200 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500201 <dependency>
202 <groupId>org.apache.hyracks</groupId>
203 <artifactId>hyracks-util</artifactId>
204 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400205 <scope>test</scope>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500206 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300207 <dependency>
Ali Alsulimanafb22b32023-05-05 12:09:47 -0700208 <groupId>org.apache.hyracks</groupId>
209 <artifactId>hyracks-util</artifactId>
210 <version>${project.version}</version>
211 <type>test-jar</type>
212 <scope>test</scope>
213 </dependency>
214 <dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300215 <groupId>org.apache.logging.log4j</groupId>
216 <artifactId>log4j-api</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400217 <scope>test</scope>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300218 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700219 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000220</project>