Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 15 | <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"> |
| 16 | <modelVersion>4.0.0</modelVersion> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 17 | <artifactId>algebricks-tests</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 18 | <name>algebricks-tests</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 19 | |
| 20 | <parent> |
| 21 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 22 | <artifactId>algebricks</artifactId> |
Ian Maxon | ce8ee31 | 2014-11-04 15:53:37 -0800 | [diff] [blame] | 23 | <version>0.2.15-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame^] | 26 | <licenses> |
| 27 | <license> |
| 28 | <name>Apache License, Version 2.0</name> |
| 29 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 30 | <distribution>repo</distribution> |
| 31 | <comments>A business-friendly OSS license</comments> |
| 32 | </license> |
| 33 | </licenses> |
| 34 | |
| 35 | |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.maven.plugins</groupId> |
| 40 | <artifactId>maven-compiler-plugin</artifactId> |
| 41 | <version>2.0.2</version> |
| 42 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 43 | <source>1.7</source> |
| 44 | <target>1.7</target> |
| 45 | <fork>true</fork> |
| 46 | <encoding>UTF-8</encoding> |
| 47 | </configuration> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 48 | </plugin> |
| 49 | <plugin> |
| 50 | <artifactId>maven-antrun-plugin</artifactId> |
| 51 | <executions> |
| 52 | <execution> |
| 53 | <phase>generate-sources</phase> |
| 54 | <configuration> |
| 55 | <tasks> |
| 56 | <ant antfile="build-script.xml" target="build"> |
| 57 | <property name="main.class" value="edu.uci.ics.hyracks.algebricks.tests.script.IdentityStreamingScript" /> |
| 58 | <property name="script.classpath" refid="maven.compile.classpath" /> |
| 59 | <property name="jvm.params" value="" /> |
| 60 | <property name="program.params" value="" /> |
| 61 | <property name="source" value="${basedir}/src/main/scripts/run" /> |
| 62 | <property name="target.dir" value="${basedir}/target/testscripts" /> |
| 63 | <property name="target" value="idscript" /> |
| 64 | </ant> |
| 65 | </tasks> |
| 66 | </configuration> |
| 67 | <goals> |
| 68 | <goal>run</goal> |
| 69 | </goals> |
| 70 | </execution> |
| 71 | </executions> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | <pluginManagement> |
| 75 | <plugins> |
| 76 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 77 | <plugin> |
| 78 | <groupId>org.eclipse.m2e</groupId> |
| 79 | <artifactId>lifecycle-mapping</artifactId> |
| 80 | <version>1.0.0</version> |
| 81 | <configuration> |
| 82 | <lifecycleMappingMetadata> |
| 83 | <pluginExecutions> |
| 84 | <pluginExecution> |
| 85 | <pluginExecutionFilter> |
| 86 | <groupId> |
| 87 | org.apache.maven.plugins |
| 88 | </groupId> |
| 89 | <artifactId> |
| 90 | maven-antrun-plugin |
| 91 | </artifactId> |
| 92 | <versionRange>[1.3,)</versionRange> |
| 93 | <goals> |
| 94 | <goal>run</goal> |
| 95 | </goals> |
| 96 | </pluginExecutionFilter> |
| 97 | <action> |
| 98 | <ignore /> |
| 99 | </action> |
| 100 | </pluginExecution> |
| 101 | </pluginExecutions> |
| 102 | </lifecycleMappingMetadata> |
| 103 | </configuration> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </pluginManagement> |
| 107 | </build> |
| 108 | <dependencies> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 109 | <dependency> |
| 110 | <!-- Dependency management inherited from top-level hyracks --> |
| 111 | <groupId>junit</groupId> |
| 112 | <artifactId>junit</artifactId> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>edu.uci.ics.hyracks</groupId> |
| 116 | <artifactId>algebricks-compiler</artifactId> |
Ian Maxon | ce8ee31 | 2014-11-04 15:53:37 -0800 | [diff] [blame] | 117 | <version>0.2.15-SNAPSHOT</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>edu.uci.ics.hyracks</groupId> |
| 121 | <artifactId>hyracks-control-cc</artifactId> |
Ian Maxon | ce8ee31 | 2014-11-04 15:53:37 -0800 | [diff] [blame] | 122 | <version>0.2.15-SNAPSHOT</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>edu.uci.ics.hyracks</groupId> |
| 126 | <artifactId>hyracks-control-nc</artifactId> |
Ian Maxon | ce8ee31 | 2014-11-04 15:53:37 -0800 | [diff] [blame] | 127 | <version>0.2.15-SNAPSHOT</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>edu.uci.ics.hyracks</groupId> |
| 131 | <artifactId>hyracks-data-std</artifactId> |
Ian Maxon | ce8ee31 | 2014-11-04 15:53:37 -0800 | [diff] [blame] | 132 | <version>0.2.15-SNAPSHOT</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 133 | </dependency> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 134 | </dependencies> |
| 135 | </project> |