blob: 98580a4b174b7b2cfb22a001f954ae42fba8ecfd [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 Maxonbf0abd42024-03-05 11:26:12 -080028 <version>0.3.8.3-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>
Michael Blow22c6d542023-10-03 23:30:18 -040051 <scope>test</scope>
Caleb Herbel6666a1c2020-02-17 20:49:26 -080052 </dependency>
53 <dependency>
54 <groupId>org.apache.commons</groupId>
55 <artifactId>commons-lang3</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -040056 <scope>test</scope>
Caleb Herbel6666a1c2020-02-17 20:49:26 -080057 </dependency>
58 <dependency>
59 <groupId>org.apache.hyracks</groupId>
60 <artifactId>hyracks-api</artifactId>
61 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040062 <scope>test</scope>
Caleb Herbel6666a1c2020-02-17 20:49:26 -080063 </dependency>
64 <dependency>
65 <groupId>org.apache.hyracks</groupId>
66 <artifactId>hyracks-data-std</artifactId>
67 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040068 <scope>test</scope>
Caleb Herbel6666a1c2020-02-17 20:49:26 -080069 </dependency>
70 <dependency>
71 <groupId>org.apache.hyracks</groupId>
72 <artifactId>hyracks-dataflow-common</artifactId>
73 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040074 <scope>test</scope>
Caleb Herbel6666a1c2020-02-17 20:49:26 -080075 </dependency>
76 <dependency>
77 <groupId>org.apache.hyracks</groupId>
78 <artifactId>hyracks-test-support</artifactId>
79 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040080 <scope>test</scope>
Caleb Herbel6666a1c2020-02-17 20:49:26 -080081 </dependency>
82 <dependency>
83 <groupId>junit</groupId>
84 <artifactId>junit</artifactId>
85 <scope>test</scope>
86 </dependency>
87 </dependencies>
88</project>