blob: 7b6faf029ba99a6741490bd093070b066a97ef92 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! 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 Westmannea8ab392013-06-05 15:17:08 -070018 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000019<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 Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
AsterixDB Jenkins478eccb2018-08-31 14:57:31 -070024 <version>0.9.5-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 </parent>
26 <artifactId>asterix-runtime</artifactId>
27 <properties>
Michael Blow4cd925c2018-01-20 17:15:38 -050028 <root.dir>${basedir}/..</root.dir>
Michael Blowb4c1fb02016-05-09 15:41:00 -070029 </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 Lychagin274f2962017-07-05 20:31:12 -070038 <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 Blow09f958c2017-08-20 17:02:19 -040071 <versionRange>[0.0,)</versionRange>
Dmitry Lychagin274f2962017-07-05 20:31:12 -070072 <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 Blowb4c1fb02016-05-09 15:41:00 -070087 <dependencies>
88 <dependency>
89 <groupId>org.apache.asterix</groupId>
90 <artifactId>asterix-om</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040091 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070092 <scope>compile</scope>
93 </dependency>
94 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070095 <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 Westmann42620f62016-11-23 11:52:24 -0800103 <groupId>org.apache.hyracks</groupId>
104 <artifactId>hyracks-control-cc</artifactId>
105 </dependency>
106 <dependency>
107 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500108 <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 Blow4c7b5bf2017-03-06 21:55:58 -0500168 <groupId>org.apache.hyracks</groupId>
169 <artifactId>hyracks-control-common</artifactId>
170 </dependency>
171 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700172 <groupId>org.apache.asterix</groupId>
173 <artifactId>asterix-transactions</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400174 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700175 </dependency>
176 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500177 <groupId>com.fasterxml.jackson.core</groupId>
178 <artifactId>jackson-databind</artifactId>
179 </dependency>
Yingyi Bue0c232d2017-01-24 09:02:45 -0800180 <dependency>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300181 <groupId>org.apache.hyracks</groupId>
182 <artifactId>hyracks-ipc</artifactId>
183 </dependency>
184 <dependency>
Yingyi Bue0c232d2017-01-24 09:02:45 -0800185 <groupId>junit</groupId>
186 <artifactId>junit</artifactId>
187 <scope>test</scope>
188 </dependency>
189 <dependency>
190 <groupId>org.mockito</groupId>
191 <artifactId>mockito-all</artifactId>
Yingyi Bue0c232d2017-01-24 09:02:45 -0800192 <scope>test</scope>
193 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300194 <dependency>
195 <groupId>org.apache.logging.log4j</groupId>
196 <artifactId>log4j-api</artifactId>
197 </dependency>
Ali Alsuliman407e56b2018-07-17 18:21:15 -0700198 <dependency>
199 <groupId>it.unimi.dsi</groupId>
200 <artifactId>fastutil</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500201 <version>8.2.2</version>
Ali Alsuliman407e56b2018-07-17 18:21:15 -0700202 </dependency>
Murtadha Hubailaf2f0632019-03-29 19:09:38 +0300203 <dependency>
204 <groupId>org.apache.commons</groupId>
205 <artifactId>commons-collections4</artifactId>
206 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700207 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000208</project>