Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 3 | ! or more contributor license agreements. See the NOTICE file |
| 4 | ! distributed with this work for additional information |
| 5 | ! regarding copyright ownership. The ASF licenses this file |
| 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
| 8 | ! with the License. You may obtain a copy of the License at |
| 9 | ! |
| 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ! |
| 12 | ! Unless required by applicable law or agreed to in writing, |
| 13 | ! software distributed under the License is distributed on an |
| 14 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | ! KIND, either express or implied. See the License for the |
| 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 19 | |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 20 | <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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 22 | <artifactId>algebricks-tests</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 23 | <name>algebricks-tests</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 24 | |
| 25 | <parent> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 26 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 27 | <artifactId>algebricks</artifactId> |
Ian Maxon | 4057591 | 2020-10-04 23:11:25 -0700 | [diff] [blame^] | 28 | <version>0.3.6</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 31 | <licenses> |
| 32 | <license> |
| 33 | <name>Apache License, Version 2.0</name> |
| 34 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 35 | <distribution>repo</distribution> |
| 36 | <comments>A business-friendly OSS license</comments> |
| 37 | </license> |
| 38 | </licenses> |
| 39 | |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 40 | <properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 41 | <root.dir>${basedir}/../..</root.dir> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 42 | </properties> |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 43 | |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 47 | <artifactId>maven-antrun-plugin</artifactId> |
| 48 | <executions> |
| 49 | <execution> |
| 50 | <phase>generate-sources</phase> |
| 51 | <configuration> |
| 52 | <tasks> |
| 53 | <ant antfile="build-script.xml" target="build"> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 54 | <property name="main.class" value="org.apache.hyracks.algebricks.tests.script.IdentityStreamingScript" /> |
| 55 | <property name="script.classpath" refid="maven.compile.classpath" /> |
| 56 | <property name="jvm.params" value="" /> |
| 57 | <property name="program.params" value="" /> |
| 58 | <property name="source" value="${basedir}/src/main/scripts/run" /> |
| 59 | <property name="target.dir" value="${basedir}/target/testscripts" /> |
| 60 | <property name="target" value="idscript" /> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 61 | </ant> |
| 62 | </tasks> |
| 63 | </configuration> |
| 64 | <goals> |
| 65 | <goal>run</goal> |
| 66 | </goals> |
| 67 | </execution> |
| 68 | </executions> |
| 69 | </plugin> |
Michael Blow | 5e17af2 | 2017-02-02 10:00:44 -0500 | [diff] [blame] | 70 | <plugin> |
| 71 | <groupId>org.apache.rat</groupId> |
| 72 | <artifactId>apache-rat-plugin</artifactId> |
| 73 | <configuration> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 74 | <excludes combine.children="append"> |
Michael Blow | 5e17af2 | 2017-02-02 10:00:44 -0500 | [diff] [blame] | 75 | <exclude>data/**</exclude> |
| 76 | <exclude>src/test/resources/results/scanMicroSortWrite.out</exclude> |
| 77 | </excludes> |
| 78 | </configuration> |
| 79 | </plugin> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 80 | </plugins> |
| 81 | <pluginManagement> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 82 | <plugins> |
| 83 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 84 | <plugin> |
| 85 | <groupId>org.eclipse.m2e</groupId> |
| 86 | <artifactId>lifecycle-mapping</artifactId> |
| 87 | <version>1.0.0</version> |
| 88 | <configuration> |
| 89 | <lifecycleMappingMetadata> |
| 90 | <pluginExecutions> |
| 91 | <pluginExecution> |
| 92 | <pluginExecutionFilter> |
| 93 | <groupId> |
| 94 | org.apache.maven.plugins |
| 95 | </groupId> |
| 96 | <artifactId> |
| 97 | maven-antrun-plugin |
| 98 | </artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 99 | <versionRange>[0.0,)</versionRange> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 100 | <goals> |
| 101 | <goal>run</goal> |
| 102 | </goals> |
| 103 | </pluginExecutionFilter> |
| 104 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 105 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 106 | </action> |
| 107 | </pluginExecution> |
| 108 | </pluginExecutions> |
| 109 | </lifecycleMappingMetadata> |
| 110 | </configuration> |
| 111 | </plugin> |
| 112 | </plugins> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 113 | </pluginManagement> |
| 114 | </build> |
| 115 | <dependencies> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 116 | <dependency> |
| 117 | <!-- Dependency management inherited from top-level hyracks --> |
| 118 | <groupId>junit</groupId> |
| 119 | <artifactId>junit</artifactId> |
| 120 | </dependency> |
| 121 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 122 | <groupId>org.apache.hyracks</groupId> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 123 | <artifactId>hyracks-control-cc</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 124 | <version>${project.version}</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 125 | </dependency> |
| 126 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 127 | <groupId>org.apache.hyracks</groupId> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 128 | <artifactId>hyracks-control-nc</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 129 | <version>${project.version}</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 130 | </dependency> |
| 131 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 132 | <groupId>org.apache.hyracks</groupId> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 133 | <artifactId>hyracks-data-std</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 134 | <version>${project.version}</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 135 | </dependency> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 136 | <dependency> |
| 137 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 138 | <artifactId>hyracks-dataflow-common</artifactId> |
| 139 | <version>${project.version}</version> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>org.apache.hyracks</groupId> |
| 143 | <artifactId>hyracks-control-common</artifactId> |
| 144 | <version>${project.version}</version> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>org.apache.hyracks</groupId> |
| 148 | <artifactId>algebricks-runtime</artifactId> |
| 149 | <version>${project.version}</version> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.apache.hyracks</groupId> |
| 153 | <artifactId>algebricks-data</artifactId> |
| 154 | <version>${project.version}</version> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>org.apache.hyracks</groupId> |
| 158 | <artifactId>algebricks-core</artifactId> |
| 159 | <version>${project.version}</version> |
| 160 | </dependency> |
| 161 | <dependency> |
| 162 | <groupId>org.apache.hyracks</groupId> |
| 163 | <artifactId>hyracks-api</artifactId> |
| 164 | <version>${project.version}</version> |
| 165 | </dependency> |
| 166 | <dependency> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 167 | <groupId>org.apache.hyracks</groupId> |
| 168 | <artifactId>hyracks-dataflow-std</artifactId> |
| 169 | <version>${project.version}</version> |
| 170 | </dependency> |
Abdullah Alamoudi | 72aa1b7 | 2016-11-27 22:57:08 -0800 | [diff] [blame] | 171 | <dependency> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 172 | <groupId>org.apache.hyracks</groupId> |
| 173 | <artifactId>hyracks-util</artifactId> |
| 174 | <version>${project.version}</version> |
| 175 | </dependency> |
| 176 | <dependency> |
Murtadha Hubail | da7e8a1 | 2018-12-04 02:29:11 +0300 | [diff] [blame] | 177 | <groupId>org.apache.hyracks</groupId> |
| 178 | <artifactId>hyracks-ipc</artifactId> |
| 179 | <version>${project.version}</version> |
| 180 | </dependency> |
| 181 | <dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 182 | <groupId>com.fasterxml.jackson.core</groupId> |
| 183 | <artifactId>jackson-databind</artifactId> |
| 184 | </dependency> |
| 185 | <dependency> |
Abdullah Alamoudi | 72aa1b7 | 2016-11-27 22:57:08 -0800 | [diff] [blame] | 186 | <groupId>commons-io</groupId> |
| 187 | <artifactId>commons-io</artifactId> |
| 188 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 189 | <dependency> |
| 190 | <groupId>org.apache.logging.log4j</groupId> |
| 191 | <artifactId>log4j-api</artifactId> |
| 192 | </dependency> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 193 | </dependencies> |
| 194 | </project> |