blob: 75ffbe33ea2bb3849137b9a9b7f3a22e4a5d97dd [file] [log] [blame]
Caleb Herbel6666a1c2020-02-17 20:49:26 -08001<!--
2 ! 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.
18 !-->
19
20<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23 <artifactId>hyracks-dataflow-common-test</artifactId>
24
25 <parent>
26 <groupId>org.apache.hyracks</groupId>
27 <artifactId>hyracks-tests</artifactId>
Ian Maxonc95de7a2020-08-07 11:58:39 -070028 <version>0.3.6-SNAPSHOT</version>
Caleb Herbel6666a1c2020-02-17 20:49:26 -080029 </parent>
30
31 <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
43 <properties>
44 <root.dir>${basedir}/../../..</root.dir>
45 </properties>
46
47 <dependencies>
48 <dependency>
49 <groupId>com.fasterxml.jackson.core</groupId>
50 <artifactId>jackson-databind</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.apache.commons</groupId>
54 <artifactId>commons-lang3</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.hyracks</groupId>
58 <artifactId>hyracks-api</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.hyracks</groupId>
63 <artifactId>hyracks-data-std</artifactId>
64 <version>${project.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.hyracks</groupId>
68 <artifactId>hyracks-dataflow-common</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.hyracks</groupId>
73 <artifactId>hyracks-test-support</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
79 <scope>test</scope>
80 </dependency>
81 </dependencies>
82</project>