blob: b4a1a4084c2d1307f9decca983d2440ecd01850d [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>
Abdullah Alamoudid3338f62016-03-16 02:12:11 +030098 <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 <execution>
120 <id>copy-beer-csv</id>
121 <phase>generate-resources</phase>
122 <goals>
123 <goal>copy-resources</goal>
124 </goals>
125 <configuration>
126 <outputDirectory>data/csv</outputDirectory>
127 <overwrite>true</overwrite>
128 <resources>
129 <resource>
130 <directory>../asterix-external-data/src/test/resources</directory>
131 <includes>
132 <include>beer.csv</include>
133 </includes>
134 </resource>
135 </resources>
136 </configuration>
137 </execution>
138 </executions>
139 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700140 </plugins>
141 </build>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700142 <dependencies>
143 <dependency>
144 <groupId>javax.servlet</groupId>
145 <artifactId>servlet-api</artifactId>
146 <type>jar</type>
147 </dependency>
148 <dependency>
149 <groupId>org.eclipse.jetty</groupId>
150 <artifactId>jetty-server</artifactId>
151 <version>8.0.0.M2</version>
152 <type>jar</type>
153 <scope>compile</scope>
154 </dependency>
155 <dependency>
156 <groupId>org.eclipse.jetty</groupId>
157 <artifactId>jetty-servlet</artifactId>
158 <version>8.0.0.M2</version>
159 <type>jar</type>
160 <scope>compile</scope>
161 </dependency>
162 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700163 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700164 <artifactId>hyracks-control-cc</artifactId>
165 </dependency>
166 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700167 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700168 <artifactId>hyracks-control-nc</artifactId>
169 </dependency>
170 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700171 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700172 <artifactId>algebricks-compiler</artifactId>
173 </dependency>
174 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700175 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700176 <artifactId>hyracks-client</artifactId>
177 </dependency>
178 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700179 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700180 <artifactId>asterix-algebra</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300181 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700182 <scope>compile</scope>
183 </dependency>
184 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700185 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700186 <artifactId>asterix-om</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300187 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700188 <type>jar</type>
189 <scope>compile</scope>
190 </dependency>
191 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700192 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700193 <artifactId>asterix-metadata</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300194 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700195 <type>jar</type>
196 <scope>compile</scope>
197 </dependency>
198 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700199 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700200 <artifactId>asterix-tools</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300201 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700202 <type>jar</type>
203 <scope>compile</scope>
204 </dependency>
205 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700206 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700207 <artifactId>asterix-common</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300208 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700209 <type>jar</type>
210 <scope>compile</scope>
211 </dependency>
212 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700213 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700214 <artifactId>asterix-common</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300215 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700216 <type>test-jar</type>
217 <scope>test</scope>
218 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700219 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
220 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
221 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700222 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700223 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700224 <artifactId>asterix-transactions</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300225 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700226 <scope>compile</scope>
227 </dependency>
228 <dependency>
229 <groupId>org.apache.hadoop</groupId>
230 <artifactId>hadoop-client</artifactId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700231 </dependency>
232 <dependency>
233 <groupId>org.apache.hadoop</groupId>
234 <artifactId>hadoop-hdfs</artifactId>
235 <type>jar</type>
236 <scope>test</scope>
237 </dependency>
238 <dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300239 <groupId>org.apache.hadoop</groupId>
240 <artifactId>hadoop-hdfs</artifactId>
241 <type>jar</type>
242 <scope>compile</scope>
243 </dependency>
244 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700245 <groupId>xerces</groupId>
246 <artifactId>xercesImpl</artifactId>
247 <version>2.9.1</version>
248 <type>jar</type>
249 <scope>compile</scope>
250 </dependency>
251 <dependency>
252 <groupId>xalan</groupId>
253 <artifactId>xalan</artifactId>
254 <version>2.7.1</version>
255 <type>jar</type>
256 <scope>test</scope>
257 </dependency>
258 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700259 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700260 <artifactId>asterix-test-framework</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300261 <version>${project.version}</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700262 <scope>test</scope>
263 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700264 <dependency>
265 <groupId>org.mockito</groupId>
266 <artifactId>mockito-all</artifactId>
267 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700268 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700269 </dependency>
270 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700271 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700272 <artifactId>privilegedaccessor</artifactId>
273 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700274 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700275 </dependency>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800276 <dependency>
277 <groupId>org.apache.asterix</groupId>
278 <artifactId>asterix-replication</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300279 <version>${project.version}</version>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800280 <scope>compile</scope>
281 </dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300282 <dependency>
283 <groupId>org.apache.asterix</groupId>
284 <artifactId>asterix-external-data</artifactId>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300285 <version>${project.version}</version>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300286 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700287 </dependencies>
Abdullah Alamoudiac683db2016-02-23 00:59:31 +0300288</project>