blob: d8e7aecfacfbfe058786e4ef81a53e7884d31c92 [file] [log] [blame]
Ian Maxon928bbd12015-09-14 17:12:48 -07001<!--
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.
18 !-->
Ian Maxond2e1e892015-10-05 12:46:26 -070019<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">
Preston Carmanc66d23a2015-07-08 23:44:13 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
Ian Maxonab556d12016-02-02 18:18:05 -080022 <artifactId>apache-asterixdb</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxonc1889c02016-02-10 15:26:24 -080024 <version>0.8.9-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -070025 </parent>
26 <artifactId>asterix-app</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +030027 <licenses>
28 <license>
29 <name>Apache License, Version 2.0</name>
30 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
31 <distribution>repo</distribution>
32 <comments>A business-friendly OSS license</comments>
33 </license>
34 </licenses>
Preston Carmanc66d23a2015-07-08 23:44:13 -070035
Ian Maxon6e5f18e2015-11-24 18:02:48 -080036 <properties>
37 <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory>
38 </properties>
39
Preston Carmanc66d23a2015-07-08 23:44:13 -070040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -070044 <artifactId>maven-jar-plugin</artifactId>
Preston Carmanc66d23a2015-07-08 23:44:13 -070045 <executions>
46 <execution>
Preston Carmanc66d23a2015-07-08 23:44:13 -070047 <goals>
Ian Maxon3da9d062016-03-16 17:05:31 -070048 <goal>jar</goal>
49 <goal>test-jar</goal>
Preston Carmanc66d23a2015-07-08 23:44:13 -070050 </goals>
51 </execution>
52 </executions>
53 </plugin>
Ian Maxonf7b64532015-12-09 17:28:18 -080054 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-jar-plugin</artifactId>
57 <executions>
58 <execution>
59 <goals>
60 <goal>jar</goal>
61 <goal>test-jar</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +030066 <plugin>
Abdullah Alamoudi30904b82016-03-22 19:25:10 +030067 <artifactId>maven-resources-plugin</artifactId>
68 <executions>
69 <execution>
70 <id>copy-external-library</id>
71 <phase>generate-resources</phase>
72 <goals>
73 <goal>copy-resources</goal>
74 </goals>
75 <configuration>
76 <outputDirectory>src/test/resources/externallib</outputDirectory>
77 <overwrite>true</overwrite>
78 <resources>
79 <resource>
80 <directory>../asterix-external-data/target</directory>
81 <includes>
82 <include>testlib-zip-binary-assembly.zip</include>
83 </includes>
84 </resource>
85 </resources>
86 </configuration>
87 </execution>
88 <execution>
89 <id>copy-beer-csv</id>
90 <phase>generate-resources</phase>
91 <goals>
92 <goal>copy-resources</goal>
93 </goals>
94 <configuration>
95 <outputDirectory>target/data/csv</outputDirectory>
96 <overwrite>true</overwrite>
97 <resources>
98 <resource>
99 <directory>../asterix-external-data/src/test/resources</directory>
100 <includes>
101 <include>beer.csv</include>
102 </includes>
103 </resource>
104 </resources>
105 </configuration>
106 </execution>
107 </executions>
108 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700109 </plugins>
110 </build>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700111 <dependencies>
112 <dependency>
113 <groupId>javax.servlet</groupId>
114 <artifactId>servlet-api</artifactId>
115 <type>jar</type>
116 </dependency>
117 <dependency>
118 <groupId>org.eclipse.jetty</groupId>
119 <artifactId>jetty-server</artifactId>
120 <version>8.0.0.M2</version>
121 <type>jar</type>
122 <scope>compile</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.eclipse.jetty</groupId>
126 <artifactId>jetty-servlet</artifactId>
127 <version>8.0.0.M2</version>
128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
131 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700132 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700133 <artifactId>hyracks-control-cc</artifactId>
134 </dependency>
135 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700136 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700137 <artifactId>hyracks-control-nc</artifactId>
138 </dependency>
139 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700140 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700141 <artifactId>algebricks-compiler</artifactId>
142 </dependency>
143 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700144 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700145 <artifactId>hyracks-client</artifactId>
146 </dependency>
147 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700148 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700149 <artifactId>asterix-algebra</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300150 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700151 <scope>compile</scope>
152 </dependency>
153 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700154 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700155 <artifactId>asterix-om</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300156 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700157 <type>jar</type>
158 <scope>compile</scope>
159 </dependency>
160 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700161 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700162 <artifactId>asterix-metadata</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300163 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700164 <type>jar</type>
165 <scope>compile</scope>
166 </dependency>
167 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700168 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700169 <artifactId>asterix-tools</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300170 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700171 <type>jar</type>
172 <scope>compile</scope>
173 </dependency>
174 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700175 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700176 <artifactId>asterix-common</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300177 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700178 <type>jar</type>
179 <scope>compile</scope>
180 </dependency>
181 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700182 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700183 <artifactId>asterix-common</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300184 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700185 <type>test-jar</type>
186 <scope>test</scope>
187 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700188 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
189 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
190 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700191 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700192 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700193 <artifactId>asterix-transactions</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300194 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700195 <scope>compile</scope>
196 </dependency>
197 <dependency>
198 <groupId>org.apache.hadoop</groupId>
199 <artifactId>hadoop-client</artifactId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700200 </dependency>
201 <dependency>
202 <groupId>org.apache.hadoop</groupId>
203 <artifactId>hadoop-hdfs</artifactId>
204 <type>jar</type>
205 <scope>test</scope>
206 </dependency>
207 <dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300208 <groupId>org.apache.hadoop</groupId>
209 <artifactId>hadoop-hdfs</artifactId>
210 <type>jar</type>
211 <scope>compile</scope>
212 </dependency>
213 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700214 <groupId>xerces</groupId>
215 <artifactId>xercesImpl</artifactId>
216 <version>2.9.1</version>
217 <type>jar</type>
218 <scope>compile</scope>
219 </dependency>
220 <dependency>
221 <groupId>xalan</groupId>
222 <artifactId>xalan</artifactId>
223 <version>2.7.1</version>
224 <type>jar</type>
225 <scope>test</scope>
226 </dependency>
227 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700228 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700229 <artifactId>asterix-test-framework</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300230 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700231 <scope>test</scope>
232 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700233 <dependency>
234 <groupId>org.mockito</groupId>
235 <artifactId>mockito-all</artifactId>
236 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700237 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700238 </dependency>
239 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700240 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700241 <artifactId>privilegedaccessor</artifactId>
242 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700243 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700244 </dependency>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800245 <dependency>
246 <groupId>org.apache.asterix</groupId>
247 <artifactId>asterix-replication</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300248 <version>${project.version}</version>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800249 <scope>compile</scope>
250 </dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300251 <dependency>
252 <groupId>org.apache.asterix</groupId>
253 <artifactId>asterix-external-data</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300254 <version>${project.version}</version>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300255 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700256 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000257</project>