blob: 98cdea81716aac577eb2dcb3990940448be6c991 [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>
AsterixDB Jenkins478eccb2018-08-31 14:57:31 -070028 <version>0.3.5-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>
120 <version>2.0.2-beta</version>
121 <scope>test</scope>
122 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400123 <dependency>
124 <groupId>org.apache.hyracks</groupId>
125 <artifactId>hyracks-dataflow-common</artifactId>
126 <version>${project.version}</version>
127 </dependency>
128 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400129 <groupId>org.apache.hyracks</groupId>
130 <artifactId>hyracks-control-common</artifactId>
131 <version>${project.version}</version>
132 </dependency>
133 <dependency>
134 <groupId>org.apache.hyracks</groupId>
135 <artifactId>hyracks-storage-am-common</artifactId>
136 <version>${project.version}</version>
137 </dependency>
138 <dependency>
139 <groupId>org.apache.hyracks</groupId>
140 <artifactId>hyracks-storage-am-lsm-common</artifactId>
141 <version>${project.version}</version>
142 </dependency>
143 <dependency>
144 <groupId>org.apache.hyracks</groupId>
145 <artifactId>hyracks-api</artifactId>
146 <version>${project.version}</version>
147 </dependency>
148 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400149 <groupId>junit</groupId>
150 <artifactId>junit</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400151 <scope>test</scope>
152 </dependency>
153 <dependency>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800154 <groupId>commons-io</groupId>
155 <artifactId>commons-io</artifactId>
156 <scope>test</scope>
157 </dependency>
158 <dependency>
159 <groupId>org.apache.commons</groupId>
160 <artifactId>commons-lang3</artifactId>
161 <scope>test</scope>
162 </dependency>
163 <dependency>
164 <groupId>org.apache.httpcomponents</groupId>
165 <artifactId>httpcore</artifactId>
166 <scope>test</scope>
167 </dependency>
168 <dependency>
169 <groupId>org.apache.httpcomponents</groupId>
170 <artifactId>httpclient</artifactId>
171 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400172 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800173 <dependency>
174 <groupId>com.fasterxml.jackson.core</groupId>
175 <artifactId>jackson-databind</artifactId>
176 </dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500177 <dependency>
178 <groupId>org.apache.hyracks</groupId>
179 <artifactId>hyracks-util</artifactId>
180 <version>${project.version}</version>
181 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300182 <dependency>
183 <groupId>org.apache.logging.log4j</groupId>
184 <artifactId>log4j-api</artifactId>
185 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700186 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000187</project>