vinayakb | 0c86039 | 2012-10-06 18:47:20 +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> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 3 | <artifactId>algebricks-tests</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 4 | <name>algebricks-tests</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 5 | |
| 6 | <parent> |
| 7 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 8 | <artifactId>algebricks</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame^] | 9 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 10 | </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> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 85 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame^] | 86 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 87 | </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> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame^] | 97 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>edu.uci.ics.hyracks</groupId> |
| 101 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame^] | 102 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>edu.uci.ics.hyracks</groupId> |
| 106 | <artifactId>hyracks-data-std</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame^] | 107 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 108 | </dependency> |
| 109 | </dependencies> |
| 110 | </project> |