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