vinayakb | 0e71084 | 2011-12-06 17:28:33 +0000 | [diff] [blame] | 1 | <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> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 8 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 0e71084 | 2011-12-06 17:28:33 +0000 | [diff] [blame] | 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> |
vinayakb | 0e71084 | 2011-12-06 17:28:33 +0000 | [diff] [blame] | 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> |
vinayakb | 5519219 | 2011-12-06 17:45:25 +0000 | [diff] [blame] | 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> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 71 | <ignore /> |
vinayakb | 5519219 | 2011-12-06 17:45:25 +0000 | [diff] [blame] | 72 | </action> |
| 73 | </pluginExecution> |
| 74 | </pluginExecutions> |
| 75 | </lifecycleMappingMetadata> |
| 76 | </configuration> |
| 77 | </plugin> |
| 78 | </plugins> |
| 79 | </pluginManagement> |
vinayakb | 0e71084 | 2011-12-06 17:28:33 +0000 | [diff] [blame] | 80 | </build> |
| 81 | <dependencies> |
| 82 | <dependency> |
| 83 | <groupId>edu.uci.ics.hyracks</groupId> |
| 84 | <artifactId>hyracks-algebricks-compiler</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 85 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 0e71084 | 2011-12-06 17:28:33 +0000 | [diff] [blame] | 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> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 96 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 0e71084 | 2011-12-06 17:28:33 +0000 | [diff] [blame] | 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>edu.uci.ics.hyracks</groupId> |
| 100 | <artifactId>hyracks-control-nc</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 101 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 0e71084 | 2011-12-06 17:28:33 +0000 | [diff] [blame] | 102 | </dependency> |
vinayakb | 8ec0f61 | 2011-12-08 01:00:37 +0000 | [diff] [blame] | 103 | <dependency> |
| 104 | <groupId>edu.uci.ics.hyracks</groupId> |
| 105 | <artifactId>hyracks-data-std</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 106 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 8ec0f61 | 2011-12-08 01:00:37 +0000 | [diff] [blame] | 107 | </dependency> |
vinayakb | 0e71084 | 2011-12-06 17:28:33 +0000 | [diff] [blame] | 108 | </dependencies> |
| 109 | </project> |