blob: 46cdf3c4eabeabef0dc3035c879af4693d481ce0 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb0c860392012-10-06 18:47:20 +000015<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">
16 <modelVersion>4.0.0</modelVersion>
vinayakb36016dc2012-10-09 06:10:12 +000017 <artifactId>algebricks-tests</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000018 <name>algebricks-tests</name>
vinayakb0c860392012-10-06 18:47:20 +000019
20 <parent>
21 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +000022 <artifactId>algebricks</artifactId>
Ian Maxonce8ee312014-11-04 15:53:37 -080023 <version>0.2.15-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000024 </parent>
25
Iane82f8112014-11-19 12:31:18 -080026 <licenses>
27 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 <distribution>repo</distribution>
31 <comments>A business-friendly OSS license</comments>
32 </license>
33 </licenses>
34
35
vinayakb0c860392012-10-06 18:47:20 +000036 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-compiler-plugin</artifactId>
41 <version>2.0.2</version>
42 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000043 <source>1.7</source>
44 <target>1.7</target>
45 <fork>true</fork>
46 <encoding>UTF-8</encoding>
47 </configuration>
vinayakb0c860392012-10-06 18:47:20 +000048 </plugin>
49 <plugin>
50 <artifactId>maven-antrun-plugin</artifactId>
51 <executions>
52 <execution>
53 <phase>generate-sources</phase>
54 <configuration>
55 <tasks>
56 <ant antfile="build-script.xml" target="build">
57 <property name="main.class" value="edu.uci.ics.hyracks.algebricks.tests.script.IdentityStreamingScript" />
58 <property name="script.classpath" refid="maven.compile.classpath" />
59 <property name="jvm.params" value="" />
60 <property name="program.params" value="" />
61 <property name="source" value="${basedir}/src/main/scripts/run" />
62 <property name="target.dir" value="${basedir}/target/testscripts" />
63 <property name="target" value="idscript" />
64 </ant>
65 </tasks>
66 </configuration>
67 <goals>
68 <goal>run</goal>
69 </goals>
70 </execution>
71 </executions>
72 </plugin>
73 </plugins>
74 <pluginManagement>
75 <plugins>
76 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
77 <plugin>
78 <groupId>org.eclipse.m2e</groupId>
79 <artifactId>lifecycle-mapping</artifactId>
80 <version>1.0.0</version>
81 <configuration>
82 <lifecycleMappingMetadata>
83 <pluginExecutions>
84 <pluginExecution>
85 <pluginExecutionFilter>
86 <groupId>
87 org.apache.maven.plugins
88 </groupId>
89 <artifactId>
90 maven-antrun-plugin
91 </artifactId>
92 <versionRange>[1.3,)</versionRange>
93 <goals>
94 <goal>run</goal>
95 </goals>
96 </pluginExecutionFilter>
97 <action>
98 <ignore />
99 </action>
100 </pluginExecution>
101 </pluginExecutions>
102 </lifecycleMappingMetadata>
103 </configuration>
104 </plugin>
105 </plugins>
106 </pluginManagement>
107 </build>
108 <dependencies>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800109 <dependency>
110 <!-- Dependency management inherited from top-level hyracks -->
111 <groupId>junit</groupId>
112 <artifactId>junit</artifactId>
113 </dependency>
114 <dependency>
115 <groupId>edu.uci.ics.hyracks</groupId>
116 <artifactId>algebricks-compiler</artifactId>
Ian Maxonce8ee312014-11-04 15:53:37 -0800117 <version>0.2.15-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800118 </dependency>
119 <dependency>
120 <groupId>edu.uci.ics.hyracks</groupId>
121 <artifactId>hyracks-control-cc</artifactId>
Ian Maxonce8ee312014-11-04 15:53:37 -0800122 <version>0.2.15-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800123 </dependency>
124 <dependency>
125 <groupId>edu.uci.ics.hyracks</groupId>
126 <artifactId>hyracks-control-nc</artifactId>
Ian Maxonce8ee312014-11-04 15:53:37 -0800127 <version>0.2.15-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800128 </dependency>
129 <dependency>
130 <groupId>edu.uci.ics.hyracks</groupId>
131 <artifactId>hyracks-data-std</artifactId>
Ian Maxonce8ee312014-11-04 15:53:37 -0800132 <version>0.2.15-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800133 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000134 </dependencies>
135</project>