blob: 0785b42321379b41775bb2a5ce87ba44a37719fa [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>
vinayakb0c860392012-10-06 18:47:20 +00004
5 <parent>
6 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +00007 <artifactId>algebricks</artifactId>
vinayakb0c860392012-10-06 18:47:20 +00008 <version>0.2.2-SNAPSHOT</version>
9 </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>
23 <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>
47 <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>
71 <ignore />
72 </action>
73 </pluginExecution>
74 </pluginExecutions>
75 </lifecycleMappingMetadata>
76 </configuration>
77 </plugin>
78 </plugins>
79 </pluginManagement>
80 </build>
81 <dependencies>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +000084 <artifactId>algebricks-compiler</artifactId>
vinayakb0c860392012-10-06 18:47:20 +000085 <version>0.2.2-SNAPSHOT</version>
86 </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>
96 <version>0.2.2-SNAPSHOT</version>
97 </dependency>
98 <dependency>
99 <groupId>edu.uci.ics.hyracks</groupId>
100 <artifactId>hyracks-control-nc</artifactId>
101 <version>0.2.2-SNAPSHOT</version>
102 </dependency>
103 <dependency>
104 <groupId>edu.uci.ics.hyracks</groupId>
105 <artifactId>hyracks-data-std</artifactId>
106 <version>0.2.2-SNAPSHOT</version>
107 </dependency>
108 </dependencies>
109</project>