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> |
madhusudancs@gmail.com | ccd9938 | 2013-03-22 17:53:40 +0000 | [diff] [blame^] | 19 | <source>1.6</source> |
| 20 | <target>1.6</target> |
madhusudancs@gmail.com | caf0833 | 2013-03-15 08:26:56 +0000 | [diff] [blame] | 21 | <fork>true</fork> |
| 22 | <encoding>UTF-8</encoding> |
| 23 | </configuration> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 24 | </plugin> |
| 25 | <plugin> |
| 26 | <artifactId>maven-antrun-plugin</artifactId> |
| 27 | <executions> |
| 28 | <execution> |
| 29 | <phase>generate-sources</phase> |
| 30 | <configuration> |
| 31 | <tasks> |
| 32 | <ant antfile="build-script.xml" target="build"> |
| 33 | <property name="main.class" value="edu.uci.ics.hyracks.algebricks.tests.script.IdentityStreamingScript" /> |
| 34 | <property name="script.classpath" refid="maven.compile.classpath" /> |
| 35 | <property name="jvm.params" value="" /> |
| 36 | <property name="program.params" value="" /> |
| 37 | <property name="source" value="${basedir}/src/main/scripts/run" /> |
| 38 | <property name="target.dir" value="${basedir}/target/testscripts" /> |
| 39 | <property name="target" value="idscript" /> |
| 40 | </ant> |
| 41 | </tasks> |
| 42 | </configuration> |
| 43 | <goals> |
| 44 | <goal>run</goal> |
| 45 | </goals> |
| 46 | </execution> |
| 47 | </executions> |
| 48 | </plugin> |
| 49 | </plugins> |
| 50 | <pluginManagement> |
| 51 | <plugins> |
| 52 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 53 | <plugin> |
| 54 | <groupId>org.eclipse.m2e</groupId> |
| 55 | <artifactId>lifecycle-mapping</artifactId> |
| 56 | <version>1.0.0</version> |
| 57 | <configuration> |
| 58 | <lifecycleMappingMetadata> |
| 59 | <pluginExecutions> |
| 60 | <pluginExecution> |
| 61 | <pluginExecutionFilter> |
| 62 | <groupId> |
| 63 | org.apache.maven.plugins |
| 64 | </groupId> |
| 65 | <artifactId> |
| 66 | maven-antrun-plugin |
| 67 | </artifactId> |
| 68 | <versionRange>[1.3,)</versionRange> |
| 69 | <goals> |
| 70 | <goal>run</goal> |
| 71 | </goals> |
| 72 | </pluginExecutionFilter> |
| 73 | <action> |
| 74 | <ignore /> |
| 75 | </action> |
| 76 | </pluginExecution> |
| 77 | </pluginExecutions> |
| 78 | </lifecycleMappingMetadata> |
| 79 | </configuration> |
| 80 | </plugin> |
| 81 | </plugins> |
| 82 | </pluginManagement> |
| 83 | </build> |
| 84 | <dependencies> |
| 85 | <dependency> |
| 86 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 87 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 88 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>junit</groupId> |
| 92 | <artifactId>junit</artifactId> |
| 93 | <version>4.8.1</version> |
| 94 | <scope>test</scope> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>edu.uci.ics.hyracks</groupId> |
| 98 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 99 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>edu.uci.ics.hyracks</groupId> |
| 103 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 104 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>edu.uci.ics.hyracks</groupId> |
| 108 | <artifactId>hyracks-data-std</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 109 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 110 | </dependency> |
| 111 | </dependencies> |
| 112 | </project> |