blob: dfa51a484a8e22cb938b0b8b101d739adde65f20 [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 Maxond4daeb42015-09-15 14:31:32 -070028 <version>0.2.17-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
40
vinayakb0c860392012-10-06 18:47:20 +000041 <build>
42 <plugins>
43 <plugin>
vinayakb0c860392012-10-06 18:47:20 +000044 <artifactId>maven-antrun-plugin</artifactId>
45 <executions>
46 <execution>
47 <phase>generate-sources</phase>
48 <configuration>
49 <tasks>
50 <ant antfile="build-script.xml" target="build">
Ian Maxone915e8c2015-07-01 17:03:31 -070051 <property name="main.class" value="org.apache.hyracks.algebricks.tests.script.IdentityStreamingScript" />
vinayakb0c860392012-10-06 18:47:20 +000052 <property name="script.classpath" refid="maven.compile.classpath" />
53 <property name="jvm.params" value="" />
54 <property name="program.params" value="" />
55 <property name="source" value="${basedir}/src/main/scripts/run" />
56 <property name="target.dir" value="${basedir}/target/testscripts" />
57 <property name="target" value="idscript" />
58 </ant>
59 </tasks>
60 </configuration>
61 <goals>
62 <goal>run</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 </plugins>
68 <pluginManagement>
69 <plugins>
70 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
71 <plugin>
72 <groupId>org.eclipse.m2e</groupId>
73 <artifactId>lifecycle-mapping</artifactId>
74 <version>1.0.0</version>
75 <configuration>
76 <lifecycleMappingMetadata>
77 <pluginExecutions>
78 <pluginExecution>
79 <pluginExecutionFilter>
80 <groupId>
81 org.apache.maven.plugins
82 </groupId>
83 <artifactId>
84 maven-antrun-plugin
85 </artifactId>
86 <versionRange>[1.3,)</versionRange>
87 <goals>
88 <goal>run</goal>
89 </goals>
90 </pluginExecutionFilter>
91 <action>
92 <ignore />
93 </action>
94 </pluginExecution>
95 </pluginExecutions>
96 </lifecycleMappingMetadata>
97 </configuration>
98 </plugin>
99 </plugins>
100 </pluginManagement>
101 </build>
102 <dependencies>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800103 <dependency>
104 <!-- Dependency management inherited from top-level hyracks -->
105 <groupId>junit</groupId>
106 <artifactId>junit</artifactId>
107 </dependency>
108 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700109 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800110 <artifactId>algebricks-compiler</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700111 <version>0.2.17-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800112 </dependency>
113 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700114 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800115 <artifactId>hyracks-control-cc</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700116 <version>0.2.17-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800117 </dependency>
118 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700119 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800120 <artifactId>hyracks-control-nc</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700121 <version>0.2.17-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800122 </dependency>
123 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700124 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800125 <artifactId>hyracks-data-std</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700126 <version>0.2.17-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800127 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000128 </dependencies>
129</project>