blob: f49189de2031aa20843cf8c2943f9406adb896e3 [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 Maxon14be9462016-02-10 14:55:42 -080028 <version>0.2.18-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>
70 </plugins>
71 <pluginManagement>
Michael Blowb4c1fb02016-05-09 15:41:00 -070072 <plugins>
73 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
74 <plugin>
75 <groupId>org.eclipse.m2e</groupId>
76 <artifactId>lifecycle-mapping</artifactId>
77 <version>1.0.0</version>
78 <configuration>
79 <lifecycleMappingMetadata>
80 <pluginExecutions>
81 <pluginExecution>
82 <pluginExecutionFilter>
83 <groupId>
84 org.apache.maven.plugins
85 </groupId>
86 <artifactId>
87 maven-antrun-plugin
88 </artifactId>
89 <versionRange>[1.3,)</versionRange>
90 <goals>
91 <goal>run</goal>
92 </goals>
93 </pluginExecutionFilter>
94 <action>
Michael Blow380b0a22016-08-02 13:05:52 -040095 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -070096 </action>
97 </pluginExecution>
98 </pluginExecutions>
99 </lifecycleMappingMetadata>
100 </configuration>
101 </plugin>
102 </plugins>
vinayakb0c860392012-10-06 18:47:20 +0000103 </pluginManagement>
104 </build>
105 <dependencies>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800106 <dependency>
107 <!-- Dependency management inherited from top-level hyracks -->
108 <groupId>junit</groupId>
109 <artifactId>junit</artifactId>
110 </dependency>
111 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700112 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800113 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400114 <version>${project.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800115 </dependency>
116 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700117 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800118 <artifactId>hyracks-control-nc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400119 <version>${project.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800120 </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-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400124 <version>${project.version}</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800125 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400126 <dependency>
127 <groupId>org.apache.hyracks</groupId>
Michael Blowba358122016-10-13 19:56:03 -0400128 <artifactId>hyracks-dataflow-common</artifactId>
129 <version>${project.version}</version>
130 </dependency>
131 <dependency>
132 <groupId>org.apache.hyracks</groupId>
133 <artifactId>hyracks-control-common</artifactId>
134 <version>${project.version}</version>
135 </dependency>
136 <dependency>
137 <groupId>org.apache.hyracks</groupId>
138 <artifactId>algebricks-runtime</artifactId>
139 <version>${project.version}</version>
140 </dependency>
141 <dependency>
142 <groupId>org.apache.hyracks</groupId>
143 <artifactId>algebricks-data</artifactId>
144 <version>${project.version}</version>
145 </dependency>
146 <dependency>
147 <groupId>org.apache.hyracks</groupId>
148 <artifactId>algebricks-core</artifactId>
149 <version>${project.version}</version>
150 </dependency>
151 <dependency>
152 <groupId>org.apache.hyracks</groupId>
153 <artifactId>hyracks-api</artifactId>
154 <version>${project.version}</version>
155 </dependency>
156 <dependency>
157 <groupId>org.json</groupId>
158 <artifactId>json</artifactId>
Till Westmannaee552c2016-11-03 10:35:31 -0700159 <version>20090211</version>
Michael Blowba358122016-10-13 19:56:03 -0400160 </dependency>
161 <dependency>
162 <groupId>org.apache.hyracks</groupId>
163 <artifactId>hyracks-dataflow-std</artifactId>
164 <version>${project.version}</version>
165 </dependency>
Abdullah Alamoudi72aa1b72016-11-27 22:57:08 -0800166 <dependency>
167 <groupId>commons-io</groupId>
168 <artifactId>commons-io</artifactId>
169 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000170 </dependencies>
171</project>