vinayakb | 59d505d | 2012-10-29 10:38:02 +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>algebricks-tests</artifactId> |
| 4 | <name>algebricks-tests</name> |
| 5 | |
| 6 | <parent> |
| 7 | <groupId>edu.uci.ics.hyracks</groupId> |
| 8 | <artifactId>algebricks</artifactId> |
vinayakb | bea31e3 | 2013-04-06 19:21:52 +0000 | [diff] [blame^] | 9 | <version>0.2.5-SNAPSHOT</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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> |
buyingyi | 5df938f | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 19 | <source>1.7</source> |
| 20 | <target>1.7</target> |
| 21 | <fork>true</fork> |
| 22 | <encoding>UTF-8</encoding> |
| 23 | </configuration> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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> |
| 87 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | bea31e3 | 2013-04-06 19:21:52 +0000 | [diff] [blame^] | 88 | <version>0.2.5-SNAPSHOT</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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 | bea31e3 | 2013-04-06 19:21:52 +0000 | [diff] [blame^] | 99 | <version>0.2.5-SNAPSHOT</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>edu.uci.ics.hyracks</groupId> |
| 103 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | bea31e3 | 2013-04-06 19:21:52 +0000 | [diff] [blame^] | 104 | <version>0.2.5-SNAPSHOT</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>edu.uci.ics.hyracks</groupId> |
| 108 | <artifactId>hyracks-data-std</artifactId> |
vinayakb | bea31e3 | 2013-04-06 19:21:52 +0000 | [diff] [blame^] | 109 | <version>0.2.5-SNAPSHOT</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 110 | </dependency> |
| 111 | </dependencies> |
| 112 | </project> |