blob: 11397995ce0e309b131c8d2cd3bf52b56ec0c77d [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 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
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 !-->
vinayakb0c860392012-10-06 18:47:20 +000019<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">
20 <modelVersion>4.0.0</modelVersion>
vinayakb0c860392012-10-06 18:47:20 +000021 <artifactId>hyracks-storage-common-test</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000022 <name>hyracks-storage-common-test</name>
vinayakb0c860392012-10-06 18:47:20 +000023 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070024 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000025 <artifactId>hyracks-tests</artifactId>
AsterixDB Jenkins0948b242017-11-20 15:56:08 -080026 <version>0.3.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000027 </parent>
vinayakb0c860392012-10-06 18:47:20 +000028 <build>
29 <plugins>
30 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070031 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-deploy-plugin</artifactId>
33 <configuration>
Ian Maxonbb5dc4c2016-02-02 18:16:30 -080034 <skip>true</skip>
Michael Blowb4c1fb02016-05-09 15:41:00 -070035 </configuration>
36 </plugin>
37 </plugins>
vinayakb0c860392012-10-06 18:47:20 +000038 </build>
Ian Maxon9e37c962015-11-25 07:38:37 -080039 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070040 <root.dir>${basedir}/../../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080041 </properties>
vinayakb0c860392012-10-06 18:47:20 +000042 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -070043 <dependency>
44 <groupId>org.apache.hyracks</groupId>
45 <artifactId>hyracks-storage-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040046 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070047 </dependency>
48 <dependency>
49 <groupId>org.apache.hyracks</groupId>
50 <artifactId>hyracks-test-support</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040051 <version>${project.version}</version>
Michael Blowba358122016-10-13 19:56:03 -040052 </dependency>
53 <dependency>
54 <groupId>org.apache.hyracks</groupId>
55 <artifactId>hyracks-api</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
Abdullah Alamoudi163c3be2016-11-23 20:31:34 -080059 <groupId>org.apache.hyracks</groupId>
60 <artifactId>hyracks-control-nc</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
Michael Blowba358122016-10-13 19:56:03 -040064 <groupId>junit</groupId>
65 <artifactId>junit</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 </dependency>
Ian Maxon4bd3f582017-02-07 18:27:38 -080067 <dependency>
68 <groupId>commons-io</groupId>
69 <artifactId>commons-io</artifactId>
70 </dependency>
Abdullah Alamoudif3e43972018-01-15 10:08:57 -080071 <dependency>
72 <groupId>org.apache.commons</groupId>
73 <artifactId>commons-lang3</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.logging.log4j</groupId>
77 <artifactId>log4j-api</artifactId>
78 </dependency>
vinayakb0c860392012-10-06 18:47:20 +000079 </dependencies>
Abdullah Alamoudi163c3be2016-11-23 20:31:34 -080080</project>