Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -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 | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 18 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 19 | <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/xsd/maven-4.0.0.xsd"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>apache-asterixdb</artifactId> |
| 23 | <groupId>org.apache.asterix</groupId> |
AsterixDB Jenkins | 0948b24 | 2017-11-20 15:56:08 -0800 | [diff] [blame] | 24 | <version>0.9.4-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>asterix-runtime</artifactId> |
| 27 | <properties> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 28 | <root.dir>${basedir}/..</root.dir> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 29 | </properties> |
| 30 | <licenses> |
| 31 | <license> |
| 32 | <name>Apache License, Version 2.0</name> |
| 33 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 34 | <distribution>repo</distribution> |
| 35 | <comments>A business-friendly OSS license</comments> |
| 36 | </license> |
| 37 | </licenses> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.asterix</groupId> |
| 42 | <artifactId>asterix-evaluator-generator-maven-plugin</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | <configuration> |
| 45 | <evaluatorPackagePrefix>org.apache.asterix.runtime.evaluators</evaluatorPackagePrefix> |
| 46 | </configuration> |
| 47 | <executions> |
| 48 | <execution> |
| 49 | <id>generate-evaluator</id> |
| 50 | <phase>process-classes</phase> |
| 51 | <goals> |
| 52 | <goal>generate-evaluator</goal> |
| 53 | </goals> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | <pluginManagement> |
| 59 | <plugins> |
| 60 | <plugin> |
| 61 | <groupId>org.eclipse.m2e</groupId> |
| 62 | <artifactId>lifecycle-mapping</artifactId> |
| 63 | <version>1.0.0</version> |
| 64 | <configuration> |
| 65 | <lifecycleMappingMetadata> |
| 66 | <pluginExecutions> |
| 67 | <pluginExecution> |
| 68 | <pluginExecutionFilter> |
| 69 | <groupId>org.apache.asterix</groupId> |
| 70 | <artifactId>asterix-evaluator-generator-maven-plugin</artifactId> |
Michael Blow | 09f958c | 2017-08-20 17:02:19 -0400 | [diff] [blame] | 71 | <versionRange>[0.0,)</versionRange> |
Dmitry Lychagin | 274f296 | 2017-07-05 20:31:12 -0700 | [diff] [blame] | 72 | <goals> |
| 73 | <goal>generate-evaluator</goal> |
| 74 | </goals> |
| 75 | </pluginExecutionFilter> |
| 76 | <action> |
| 77 | <ignore /> |
| 78 | </action> |
| 79 | </pluginExecution> |
| 80 | </pluginExecutions> |
| 81 | </lifecycleMappingMetadata> |
| 82 | </configuration> |
| 83 | </plugin> |
| 84 | </plugins> |
| 85 | </pluginManagement> |
| 86 | </build> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 87 | <dependencies> |
| 88 | <dependency> |
| 89 | <groupId>org.apache.asterix</groupId> |
| 90 | <artifactId>asterix-om</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 91 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 92 | <scope>compile</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 95 | <groupId>org.apache.hyracks</groupId> |
| 96 | <artifactId>hyracks-storage-am-btree</artifactId> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.apache.hyracks</groupId> |
| 100 | <artifactId>hyracks-api</artifactId> |
| 101 | </dependency> |
| 102 | <dependency> |
Till Westmann | 42620f6 | 2016-11-23 11:52:24 -0800 | [diff] [blame] | 103 | <groupId>org.apache.hyracks</groupId> |
| 104 | <artifactId>hyracks-control-cc</artifactId> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 108 | <artifactId>algebricks-common</artifactId> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.apache.hyracks</groupId> |
| 112 | <artifactId>hyracks-util</artifactId> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.apache.hyracks</groupId> |
| 116 | <artifactId>hyracks-dataflow-common</artifactId> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.apache.hyracks</groupId> |
| 120 | <artifactId>algebricks-data</artifactId> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.apache.asterix</groupId> |
| 124 | <artifactId>asterix-common</artifactId> |
| 125 | <version>${project.version}</version> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>org.apache.hyracks</groupId> |
| 129 | <artifactId>algebricks-core</artifactId> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.apache.commons</groupId> |
| 133 | <artifactId>commons-lang3</artifactId> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.apache.hyracks</groupId> |
| 137 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>org.apache.hyracks</groupId> |
| 141 | <artifactId>hyracks-dataflow-std</artifactId> |
| 142 | </dependency> |
| 143 | <dependency> |
| 144 | <groupId>org.apache.hyracks</groupId> |
| 145 | <artifactId>hyracks-data-std</artifactId> |
| 146 | </dependency> |
| 147 | <dependency> |
| 148 | <groupId>com.google.guava</groupId> |
| 149 | <artifactId>guava</artifactId> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.apache.hyracks</groupId> |
| 153 | <artifactId>algebricks-runtime</artifactId> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>org.apache.hyracks</groupId> |
| 157 | <artifactId>hyracks-storage-am-common</artifactId> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.apache.hyracks</groupId> |
| 161 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 162 | </dependency> |
| 163 | <dependency> |
| 164 | <groupId>org.apache.hyracks</groupId> |
| 165 | <artifactId>hyracks-storage-common</artifactId> |
| 166 | </dependency> |
| 167 | <dependency> |
Michael Blow | 4c7b5bf | 2017-03-06 21:55:58 -0500 | [diff] [blame] | 168 | <groupId>org.apache.hyracks</groupId> |
| 169 | <artifactId>hyracks-control-common</artifactId> |
| 170 | </dependency> |
| 171 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 172 | <groupId>org.apache.asterix</groupId> |
| 173 | <artifactId>asterix-transactions</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 174 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 175 | </dependency> |
| 176 | <dependency> |
Michael Blow | 599ef8f | 2017-01-12 11:02:53 -0500 | [diff] [blame] | 177 | <groupId>com.fasterxml.jackson.core</groupId> |
| 178 | <artifactId>jackson-databind</artifactId> |
| 179 | </dependency> |
Yingyi Bu | e0c232d | 2017-01-24 09:02:45 -0800 | [diff] [blame] | 180 | <dependency> |
| 181 | <groupId>junit</groupId> |
| 182 | <artifactId>junit</artifactId> |
| 183 | <scope>test</scope> |
| 184 | </dependency> |
| 185 | <dependency> |
| 186 | <groupId>org.mockito</groupId> |
| 187 | <artifactId>mockito-all</artifactId> |
| 188 | <version>1.10.19</version> |
| 189 | <scope>test</scope> |
| 190 | </dependency> |
Murtadha Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 191 | <dependency> |
| 192 | <groupId>org.apache.logging.log4j</groupId> |
| 193 | <artifactId>log4j-api</artifactId> |
| 194 | </dependency> |
Ali Alsuliman | 407e56b | 2018-07-17 18:21:15 -0700 | [diff] [blame^] | 195 | <dependency> |
| 196 | <groupId>it.unimi.dsi</groupId> |
| 197 | <artifactId>fastutil</artifactId> |
| 198 | <version>8.1.1</version> |
| 199 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 200 | </dependencies> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 201 | </project> |