blob: 09a4c4c357ca786f3f3bd8ccb1453ea920611726 [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>
22 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-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 <build>
36 <plugins>
37 <plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070038 <groupId>org.codehaus.mojo</groupId>
39 <artifactId>appassembler-maven-plugin</artifactId>
40 <version>1.0</version>
41 <executions>
42 <execution>
43 <configuration>
44 <programs>
45 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070046 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070047 <name>asterix-web</name>
48 </program>
49 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070050 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070051 <name>asterix-cmd</name>
52 </program>
53 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070054 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070055 <name>asterix-cli</name>
56 </program>
57 </programs>
58 <repositoryLayout>flat</repositoryLayout>
59 <repositoryName>lib</repositoryName>
60 </configuration>
61 <phase>package</phase>
62 <goals>
63 <goal>assemble</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <artifactId>maven-assembly-plugin</artifactId>
70 <version>2.2-beta-5</version>
71 <executions>
72 <execution>
73 <configuration>
74 <descriptors>
75 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
76 </descriptors>
77 </configuration>
78 <phase>package</phase>
79 <goals>
80 <goal>attached</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
Ian Maxonf7b64532015-12-09 17:28:18 -080085 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-jar-plugin</artifactId>
88 <executions>
89 <execution>
90 <goals>
91 <goal>jar</goal>
92 <goal>test-jar</goal>
93 </goals>
94 </execution>
95 </executions>
96 </plugin>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +030097 <plugin>
98 <artifactId>maven-resources-plugin</artifactId>
99 <executions>
100 <execution>
101 <id>copy-external-library</id>
102 <phase>generate-resources</phase>
103 <goals>
104 <goal>copy-resources</goal>
105 </goals>
106 <configuration>
107 <outputDirectory>src/test/resources/externallib</outputDirectory>
108 <overwrite>true</overwrite>
109 <resources>
110 <resource>
111 <directory>../asterix-external-data/target</directory>
112 <includes>
113 <include>testlib-zip-binary-assembly.zip</include>
114 </includes>
115 </resource>
116 </resources>
117 </configuration>
118 </execution>
119 </executions>
120</plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700121 </plugins>
122 </build>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700123 <dependencies>
124 <dependency>
125 <groupId>javax.servlet</groupId>
126 <artifactId>servlet-api</artifactId>
127 <type>jar</type>
128 </dependency>
129 <dependency>
130 <groupId>org.eclipse.jetty</groupId>
131 <artifactId>jetty-server</artifactId>
132 <version>8.0.0.M2</version>
133 <type>jar</type>
134 <scope>compile</scope>
135 </dependency>
136 <dependency>
137 <groupId>org.eclipse.jetty</groupId>
138 <artifactId>jetty-servlet</artifactId>
139 <version>8.0.0.M2</version>
140 <type>jar</type>
141 <scope>compile</scope>
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-control-cc</artifactId>
146 </dependency>
147 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700148 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700149 <artifactId>hyracks-control-nc</artifactId>
150 </dependency>
151 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700152 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700153 <artifactId>algebricks-compiler</artifactId>
154 </dependency>
155 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700156 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700157 <artifactId>hyracks-client</artifactId>
158 </dependency>
159 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700160 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700161 <artifactId>asterix-algebra</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300162 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700163 <scope>compile</scope>
164 </dependency>
165 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700166 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700167 <artifactId>asterix-om</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300168 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700169 <type>jar</type>
170 <scope>compile</scope>
171 </dependency>
172 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700173 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700174 <artifactId>asterix-metadata</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300175 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700176 <type>jar</type>
177 <scope>compile</scope>
178 </dependency>
179 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700180 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700181 <artifactId>asterix-tools</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300182 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700183 <type>jar</type>
184 <scope>compile</scope>
185 </dependency>
186 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700187 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700188 <artifactId>asterix-common</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300189 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700190 <type>jar</type>
191 <scope>compile</scope>
192 </dependency>
193 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700194 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700195 <artifactId>asterix-common</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300196 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700197 <type>test-jar</type>
198 <scope>test</scope>
199 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700200 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
201 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
202 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700203 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700204 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700205 <artifactId>asterix-transactions</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300206 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700207 <scope>compile</scope>
208 </dependency>
209 <dependency>
210 <groupId>org.apache.hadoop</groupId>
211 <artifactId>hadoop-client</artifactId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700212 </dependency>
213 <dependency>
214 <groupId>org.apache.hadoop</groupId>
215 <artifactId>hadoop-hdfs</artifactId>
216 <type>jar</type>
217 <scope>test</scope>
218 </dependency>
219 <dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300220 <groupId>org.apache.hadoop</groupId>
221 <artifactId>hadoop-hdfs</artifactId>
222 <type>jar</type>
223 <scope>compile</scope>
224 </dependency>
225 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700226 <groupId>xerces</groupId>
227 <artifactId>xercesImpl</artifactId>
228 <version>2.9.1</version>
229 <type>jar</type>
230 <scope>compile</scope>
231 </dependency>
232 <dependency>
233 <groupId>xalan</groupId>
234 <artifactId>xalan</artifactId>
235 <version>2.7.1</version>
236 <type>jar</type>
237 <scope>test</scope>
238 </dependency>
239 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700240 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700241 <artifactId>asterix-test-framework</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300242 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700243 <scope>test</scope>
244 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700245 <dependency>
246 <groupId>org.mockito</groupId>
247 <artifactId>mockito-all</artifactId>
248 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700249 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700250 </dependency>
251 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700252 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700253 <artifactId>privilegedaccessor</artifactId>
254 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700255 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700256 </dependency>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800257 <dependency>
258 <groupId>org.apache.asterix</groupId>
259 <artifactId>asterix-replication</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300260 <version>${project.version}</version>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800261 <scope>compile</scope>
262 </dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300263 <dependency>
264 <groupId>org.apache.asterix</groupId>
265 <artifactId>asterix-external-data</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300266 <version>${project.version}</version>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300267 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700268 </dependencies>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300269</project>