blob: def0b6ca5e04a0a8c35cad58dd68bd9f1ff20af8 [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>
Michael Blow23d990c2019-03-27 22:11:26 -040028 <version>0.3.4.2-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>
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 </plugins>
50 </build>
51 <properties>
52 <root.dir>${basedir}/../../..</root.dir>
53 </properties>
54 <dependencies>
55 <dependency>
56 <groupId>org.apache.hyracks</groupId>
57 <artifactId>hyracks-dataflow-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040058 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070059 </dependency>
60 <dependency>
61 <groupId>org.apache.hyracks</groupId>
62 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040063 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070064 </dependency>
65 <dependency>
66 <groupId>org.apache.hyracks</groupId>
67 <artifactId>hyracks-control-nc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040068 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070069 </dependency>
70 <dependency>
71 <groupId>org.apache.hyracks</groupId>
Till Westmann55dd6ff2017-02-19 20:18:51 -080072 <artifactId>hyracks-storage-common</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.hyracks</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070077 <artifactId>hyracks-storage-am-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040078 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070079 </dependency>
80 <dependency>
81 <groupId>org.apache.hyracks</groupId>
82 <artifactId>hyracks-storage-am-rtree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040083 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070084 </dependency>
85 <dependency>
86 <groupId>org.apache.hyracks</groupId>
87 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040088 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070089 </dependency>
90 <dependency>
91 <groupId>org.apache.hyracks</groupId>
92 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040093 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070094 </dependency>
95 <dependency>
96 <groupId>org.apache.hyracks</groupId>
97 <artifactId>hyracks-test-support</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040098 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070099 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.hyracks</groupId>
103 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400104 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700105 </dependency>
106 <dependency>
107 <groupId>org.apache.hyracks</groupId>
108 <artifactId>hyracks-client</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400109 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700110 </dependency>
111 <dependency>
112 <groupId>com.e-movimento.tinytools</groupId>
113 <artifactId>privilegedaccessor</artifactId>
114 <version>1.2.2</version>
115 <scope>test</scope>
116 </dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400117 <dependency>
118 <groupId>org.mockito</groupId>
119 <artifactId>mockito-all</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400120 <scope>test</scope>
121 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400122 <dependency>
123 <groupId>org.apache.hyracks</groupId>
124 <artifactId>hyracks-dataflow-common</artifactId>
125 <version>${project.version}</version>
126 </dependency>
127 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400128 <groupId>org.apache.hyracks</groupId>
129 <artifactId>hyracks-control-common</artifactId>
130 <version>${project.version}</version>
131 </dependency>
132 <dependency>
133 <groupId>org.apache.hyracks</groupId>
134 <artifactId>hyracks-storage-am-common</artifactId>
135 <version>${project.version}</version>
136 </dependency>
137 <dependency>
138 <groupId>org.apache.hyracks</groupId>
139 <artifactId>hyracks-storage-am-lsm-common</artifactId>
140 <version>${project.version}</version>
141 </dependency>
142 <dependency>
143 <groupId>org.apache.hyracks</groupId>
144 <artifactId>hyracks-api</artifactId>
145 <version>${project.version}</version>
146 </dependency>
147 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400148 <groupId>junit</groupId>
149 <artifactId>junit</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400150 <scope>test</scope>
151 </dependency>
152 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800153 <groupId>commons-io</groupId>
154 <artifactId>commons-io</artifactId>
155 <scope>test</scope>
156 </dependency>
157 <dependency>
158 <groupId>org.apache.commons</groupId>
159 <artifactId>commons-lang3</artifactId>
160 <scope>test</scope>
161 </dependency>
162 <dependency>
163 <groupId>org.apache.httpcomponents</groupId>
164 <artifactId>httpcore</artifactId>
165 <scope>test</scope>
166 </dependency>
167 <dependency>
168 <groupId>org.apache.httpcomponents</groupId>
169 <artifactId>httpclient</artifactId>
170 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400171 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800172 <dependency>
173 <groupId>com.fasterxml.jackson.core</groupId>
174 <artifactId>jackson-databind</artifactId>
175 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500176 <dependency>
177 <groupId>org.apache.hyracks</groupId>
178 <artifactId>hyracks-util</artifactId>
179 <version>${project.version}</version>
180 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300181 <dependency>
182 <groupId>org.apache.logging.log4j</groupId>
183 <artifactId>log4j-api</artifactId>
184 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700185 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000186</project>