blob: c4fc7f4f7e2c0c5583a998a18089c7c1d4b0c04e [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 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb0c860392012-10-06 18:47:20 +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">
21 <modelVersion>4.0.0</modelVersion>
vinayakb36016dc2012-10-09 06:10:12 +000022 <artifactId>algebricks-tests</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000023 <name>algebricks-tests</name>
vinayakb0c860392012-10-06 18:47:20 +000024
25 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070026 <groupId>org.apache.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +000027 <artifactId>algebricks</artifactId>
Ian Maxonf20e64f2024-03-05 00:02:55 -080028 <version>0.3.10-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000029 </parent>
30
Iane82f8112014-11-19 12:31:18 -080031 <licenses>
32 <license>
33 <name>Apache License, Version 2.0</name>
34 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
35 <distribution>repo</distribution>
36 <comments>A business-friendly OSS license</comments>
37 </license>
38 </licenses>
39
Ian Maxon9e37c962015-11-25 07:38:37 -080040 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070041 <root.dir>${basedir}/../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080042 </properties>
Iane82f8112014-11-19 12:31:18 -080043
vinayakb0c860392012-10-06 18:47:20 +000044 <build>
45 <plugins>
46 <plugin>
vinayakb0c860392012-10-06 18:47:20 +000047 <artifactId>maven-antrun-plugin</artifactId>
48 <executions>
49 <execution>
50 <phase>generate-sources</phase>
51 <configuration>
52 <tasks>
53 <ant antfile="build-script.xml" target="build">
Michael Blow380b0a22016-08-02 13:05:52 -040054 <property name="main.class" value="org.apache.hyracks.algebricks.tests.script.IdentityStreamingScript" />
55 <property name="script.classpath" refid="maven.compile.classpath" />
56 <property name="jvm.params" value="" />
57 <property name="program.params" value="" />
58 <property name="source" value="${basedir}/src/main/scripts/run" />
59 <property name="target.dir" value="${basedir}/target/testscripts" />
60 <property name="target" value="idscript" />
vinayakb0c860392012-10-06 18:47:20 +000061 </ant>
62 </tasks>
63 </configuration>
64 <goals>
65 <goal>run</goal>
66 </goals>
67 </execution>
68 </executions>
69 </plugin>
Michael Blow5e17af22017-02-02 10:00:44 -050070 <plugin>
71 <groupId>org.apache.rat</groupId>
72 <artifactId>apache-rat-plugin</artifactId>
73 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050074 <excludes combine.children="append">
Michael Blow5e17af22017-02-02 10:00:44 -050075 <exclude>data/**</exclude>
76 <exclude>src/test/resources/results/scanMicroSortWrite.out</exclude>
77 </excludes>
78 </configuration>
79 </plugin>
Ian Maxon0cde5152025-02-20 14:22:00 -080080 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-surefire-plugin</artifactId>
83 </plugin>
vinayakb0c860392012-10-06 18:47:20 +000084 </plugins>
85 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -070086 <plugins>
87 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
88 <plugin>
89 <groupId>org.eclipse.m2e</groupId>
90 <artifactId>lifecycle-mapping</artifactId>
91 <version>1.0.0</version>
92 <configuration>
93 <lifecycleMappingMetadata>
94 <pluginExecutions>
95 <pluginExecution>
96 <pluginExecutionFilter>
97 <groupId>
98 org.apache.maven.plugins
99 </groupId>
100 <artifactId>
101 maven-antrun-plugin
102 </artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400103 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700104 <goals>
105 <goal>run</goal>
106 </goals>
107 </pluginExecutionFilter>
108 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400109 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700110 </action>
111 </pluginExecution>
112 </pluginExecutions>
113 </lifecycleMappingMetadata>
114 </configuration>
115 </plugin>
116 </plugins>
vinayakb0c860392012-10-06 18:47:20 +0000117 </pluginManagement>
118 </build>
119 <dependencies>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800120 <dependency>
121 <!-- Dependency management inherited from top-level hyracks -->
122 <groupId>junit</groupId>
123 <artifactId>junit</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400124 <scope>test</scope>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800125 </dependency>
126 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700127 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800128 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400129 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400130 <scope>test</scope>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800131 </dependency>
132 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700133 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800134 <artifactId>hyracks-control-nc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400135 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400136 <scope>test</scope>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800137 </dependency>
138 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700139 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800140 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400141 <version>${project.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800142 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400143 <dependency>
144 <groupId>org.apache.hyracks</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400145 <artifactId>hyracks-dataflow-common</artifactId>
146 <version>${project.version}</version>
147 </dependency>
148 <dependency>
149 <groupId>org.apache.hyracks</groupId>
150 <artifactId>hyracks-control-common</artifactId>
151 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400152 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400153 </dependency>
154 <dependency>
155 <groupId>org.apache.hyracks</groupId>
156 <artifactId>algebricks-runtime</artifactId>
157 <version>${project.version}</version>
158 </dependency>
159 <dependency>
160 <groupId>org.apache.hyracks</groupId>
161 <artifactId>algebricks-data</artifactId>
162 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400163 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400164 </dependency>
165 <dependency>
166 <groupId>org.apache.hyracks</groupId>
167 <artifactId>algebricks-core</artifactId>
168 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400169 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400170 </dependency>
171 <dependency>
172 <groupId>org.apache.hyracks</groupId>
173 <artifactId>hyracks-api</artifactId>
174 <version>${project.version}</version>
175 </dependency>
176 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400177 <groupId>org.apache.hyracks</groupId>
178 <artifactId>hyracks-dataflow-std</artifactId>
179 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400180 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400181 </dependency>
Abdullah Alamoudi72aa1b72016-11-27 22:57:08 -0800182 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500183 <groupId>org.apache.hyracks</groupId>
184 <artifactId>hyracks-util</artifactId>
185 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400186 <scope>test</scope>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500187 </dependency>
188 <dependency>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300189 <groupId>org.apache.hyracks</groupId>
190 <artifactId>hyracks-ipc</artifactId>
191 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400192 <scope>test</scope>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300193 </dependency>
194 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800195 <groupId>com.fasterxml.jackson.core</groupId>
196 <artifactId>jackson-databind</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400197 <scope>test</scope>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800198 </dependency>
199 <dependency>
Abdullah Alamoudi72aa1b72016-11-27 22:57:08 -0800200 <groupId>commons-io</groupId>
201 <artifactId>commons-io</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400202 <scope>test</scope>
Abdullah Alamoudi72aa1b72016-11-27 22:57:08 -0800203 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300204 <dependency>
205 <groupId>org.apache.logging.log4j</groupId>
206 <artifactId>log4j-api</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400207 <scope>test</scope>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300208 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000209 </dependencies>
210</project>