blob: 257a0fcb07fafc00b2657f28e274dd8e2ca82fe0 [file] [log] [blame]
vinayakb0e710842011-12-06 17:28:33 +00001<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">
2 <modelVersion>4.0.0</modelVersion>
3 <artifactId>hyracks-algebricks-tests</artifactId>
4
5 <parent>
6 <groupId>edu.uci.ics.hyracks</groupId>
7 <artifactId>hyracks-algebricks</artifactId>
zheilbrond974a5b2012-10-02 02:01:06 +00008 <version>0.2.2-SNAPSHOT</version>
vinayakb0e710842011-12-06 17:28:33 +00009 </parent>
10
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 <version>2.0.2</version>
17 <configuration>
18 <source>1.6</source>
19 <target>1.6</target>
20 </configuration>
21 </plugin>
22 <plugin>
vinayakb0e710842011-12-06 17:28:33 +000023 <artifactId>maven-antrun-plugin</artifactId>
24 <executions>
25 <execution>
26 <phase>generate-sources</phase>
27 <configuration>
28 <tasks>
29 <ant antfile="build-script.xml" target="build">
30 <property name="main.class" value="edu.uci.ics.hyracks.algebricks.tests.script.IdentityStreamingScript" />
31 <property name="script.classpath" refid="maven.compile.classpath" />
32 <property name="jvm.params" value="" />
33 <property name="program.params" value="" />
34 <property name="source" value="${basedir}/src/main/scripts/run" />
35 <property name="target.dir" value="${basedir}/target/testscripts" />
36 <property name="target" value="idscript" />
37 </ant>
38 </tasks>
39 </configuration>
40 <goals>
41 <goal>run</goal>
42 </goals>
43 </execution>
44 </executions>
45 </plugin>
46 </plugins>
vinayakb55192192011-12-06 17:45:25 +000047 <pluginManagement>
48 <plugins>
49 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
50 <plugin>
51 <groupId>org.eclipse.m2e</groupId>
52 <artifactId>lifecycle-mapping</artifactId>
53 <version>1.0.0</version>
54 <configuration>
55 <lifecycleMappingMetadata>
56 <pluginExecutions>
57 <pluginExecution>
58 <pluginExecutionFilter>
59 <groupId>
60 org.apache.maven.plugins
61 </groupId>
62 <artifactId>
63 maven-antrun-plugin
64 </artifactId>
65 <versionRange>[1.3,)</versionRange>
66 <goals>
67 <goal>run</goal>
68 </goals>
69 </pluginExecutionFilter>
70 <action>
zheilbrone74da942012-04-05 21:43:52 +000071 <ignore />
vinayakb55192192011-12-06 17:45:25 +000072 </action>
73 </pluginExecution>
74 </pluginExecutions>
75 </lifecycleMappingMetadata>
76 </configuration>
77 </plugin>
78 </plugins>
79 </pluginManagement>
vinayakb0e710842011-12-06 17:28:33 +000080 </build>
81 <dependencies>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
84 <artifactId>hyracks-algebricks-compiler</artifactId>
zheilbrond974a5b2012-10-02 02:01:06 +000085 <version>0.2.2-SNAPSHOT</version>
vinayakb0e710842011-12-06 17:28:33 +000086 </dependency>
87 <dependency>
88 <groupId>junit</groupId>
89 <artifactId>junit</artifactId>
90 <version>4.8.1</version>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>edu.uci.ics.hyracks</groupId>
95 <artifactId>hyracks-control-cc</artifactId>
zheilbrond974a5b2012-10-02 02:01:06 +000096 <version>0.2.2-SNAPSHOT</version>
vinayakb0e710842011-12-06 17:28:33 +000097 </dependency>
98 <dependency>
99 <groupId>edu.uci.ics.hyracks</groupId>
100 <artifactId>hyracks-control-nc</artifactId>
zheilbrond974a5b2012-10-02 02:01:06 +0000101 <version>0.2.2-SNAPSHOT</version>
vinayakb0e710842011-12-06 17:28:33 +0000102 </dependency>
vinayakb8ec0f612011-12-08 01:00:37 +0000103 <dependency>
104 <groupId>edu.uci.ics.hyracks</groupId>
105 <artifactId>hyracks-data-std</artifactId>
zheilbrond974a5b2012-10-02 02:01:06 +0000106 <version>0.2.2-SNAPSHOT</version>
vinayakb8ec0f612011-12-08 01:00:37 +0000107 </dependency>
vinayakb0e710842011-12-06 17:28:33 +0000108 </dependencies>
109</project>