blob: ac85207419a99694917e8c578fa15fdc7b7a7a86 [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 Maxonfadb35b2020-07-06 14:35:59 -070028 <version>0.3.5</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>
vinayakb0c860392012-10-06 18:47:20 +000080 </plugins>
81 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -070082 <plugins>
83 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
84 <plugin>
85 <groupId>org.eclipse.m2e</groupId>
86 <artifactId>lifecycle-mapping</artifactId>
87 <version>1.0.0</version>
88 <configuration>
89 <lifecycleMappingMetadata>
90 <pluginExecutions>
91 <pluginExecution>
92 <pluginExecutionFilter>
93 <groupId>
94 org.apache.maven.plugins
95 </groupId>
96 <artifactId>
97 maven-antrun-plugin
98 </artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -040099 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700100 <goals>
101 <goal>run</goal>
102 </goals>
103 </pluginExecutionFilter>
104 <action>
Michael Blow380b0a22016-08-02 13:05:52 -0400105 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700106 </action>
107 </pluginExecution>
108 </pluginExecutions>
109 </lifecycleMappingMetadata>
110 </configuration>
111 </plugin>
112 </plugins>
vinayakb0c860392012-10-06 18:47:20 +0000113 </pluginManagement>
114 </build>
115 <dependencies>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800116 <dependency>
117 <!-- Dependency management inherited from top-level hyracks -->
118 <groupId>junit</groupId>
119 <artifactId>junit</artifactId>
120 </dependency>
121 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700122 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800123 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400124 <version>${project.version}</version>
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-nc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400129 <version>${project.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800130 </dependency>
131 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700132 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800133 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400134 <version>${project.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800135 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400136 <dependency>
137 <groupId>org.apache.hyracks</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400138 <artifactId>hyracks-dataflow-common</artifactId>
139 <version>${project.version}</version>
140 </dependency>
141 <dependency>
142 <groupId>org.apache.hyracks</groupId>
143 <artifactId>hyracks-control-common</artifactId>
144 <version>${project.version}</version>
145 </dependency>
146 <dependency>
147 <groupId>org.apache.hyracks</groupId>
148 <artifactId>algebricks-runtime</artifactId>
149 <version>${project.version}</version>
150 </dependency>
151 <dependency>
152 <groupId>org.apache.hyracks</groupId>
153 <artifactId>algebricks-data</artifactId>
154 <version>${project.version}</version>
155 </dependency>
156 <dependency>
157 <groupId>org.apache.hyracks</groupId>
158 <artifactId>algebricks-core</artifactId>
159 <version>${project.version}</version>
160 </dependency>
161 <dependency>
162 <groupId>org.apache.hyracks</groupId>
163 <artifactId>hyracks-api</artifactId>
164 <version>${project.version}</version>
165 </dependency>
166 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400167 <groupId>org.apache.hyracks</groupId>
168 <artifactId>hyracks-dataflow-std</artifactId>
169 <version>${project.version}</version>
170 </dependency>
Abdullah Alamoudi72aa1b72016-11-27 22:57:08 -0800171 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500172 <groupId>org.apache.hyracks</groupId>
173 <artifactId>hyracks-util</artifactId>
174 <version>${project.version}</version>
175 </dependency>
176 <dependency>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300177 <groupId>org.apache.hyracks</groupId>
178 <artifactId>hyracks-ipc</artifactId>
179 <version>${project.version}</version>
180 </dependency>
181 <dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800182 <groupId>com.fasterxml.jackson.core</groupId>
183 <artifactId>jackson-databind</artifactId>
184 </dependency>
185 <dependency>
Abdullah Alamoudi72aa1b72016-11-27 22:57:08 -0800186 <groupId>commons-io</groupId>
187 <artifactId>commons-io</artifactId>
188 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300189 <dependency>
190 <groupId>org.apache.logging.log4j</groupId>
191 <artifactId>log4j-api</artifactId>
192 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000193 </dependencies>
194</project>