blob: 288990832d81430287899493f1e8e07402dc107e [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 !-->
Preston Carmanc66d23a2015-07-08 23:44:13 -070019<project
20 xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070026 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -070027 <version>0.8.7-SNAPSHOT</version>
28 </parent>
29 <artifactId>asterix-app</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000030
Preston Carmanc66d23a2015-07-08 23:44:13 -070031 <licenses>
32 <license>
33 <name>Apache License, Version 2.0</name>
34 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
35 <distribution>repo</distribution>
36 <comments>A business-friendly OSS license</comments>
37 </license>
38 </licenses>
39
40 <build>
41 <plugins>
42 <plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070043 <groupId>org.codehaus.mojo</groupId>
44 <artifactId>appassembler-maven-plugin</artifactId>
45 <version>1.0</version>
46 <executions>
47 <execution>
48 <configuration>
49 <programs>
50 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070051 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070052 <name>asterix-web</name>
53 </program>
54 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070055 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070056 <name>asterix-cmd</name>
57 </program>
58 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070059 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070060 <name>asterix-cli</name>
61 </program>
62 </programs>
63 <repositoryLayout>flat</repositoryLayout>
64 <repositoryName>lib</repositoryName>
65 </configuration>
66 <phase>package</phase>
67 <goals>
68 <goal>assemble</goal>
69 </goals>
70 </execution>
71 </executions>
72 </plugin>
73 <plugin>
74 <artifactId>maven-assembly-plugin</artifactId>
75 <version>2.2-beta-5</version>
76 <executions>
77 <execution>
78 <configuration>
79 <descriptors>
80 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
81 </descriptors>
82 </configuration>
83 <phase>package</phase>
84 <goals>
85 <goal>attached</goal>
86 </goals>
87 </execution>
88 </executions>
89 </plugin>
90 </plugins>
91 </build>
92
93 <dependencies>
94 <dependency>
95 <groupId>javax.servlet</groupId>
96 <artifactId>servlet-api</artifactId>
97 <type>jar</type>
98 </dependency>
99 <dependency>
100 <groupId>org.eclipse.jetty</groupId>
101 <artifactId>jetty-server</artifactId>
102 <version>8.0.0.M2</version>
103 <type>jar</type>
104 <scope>compile</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.eclipse.jetty</groupId>
108 <artifactId>jetty-servlet</artifactId>
109 <version>8.0.0.M2</version>
110 <type>jar</type>
111 <scope>compile</scope>
112 </dependency>
113 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700114 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700115 <artifactId>hyracks-control-cc</artifactId>
116 </dependency>
117 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700118 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700119 <artifactId>hyracks-control-nc</artifactId>
120 </dependency>
121 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700122 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700123 <artifactId>algebricks-compiler</artifactId>
124 </dependency>
125 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700126 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700127 <artifactId>hyracks-client</artifactId>
128 </dependency>
129 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700130 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700131 <artifactId>asterix-algebra</artifactId>
132 <version>0.8.7-SNAPSHOT</version>
133 <scope>compile</scope>
134 </dependency>
135 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700136 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700137 <artifactId>asterix-aql</artifactId>
138 <version>0.8.7-SNAPSHOT</version>
139 <type>jar</type>
140 <scope>compile</scope>
141 </dependency>
142 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700143 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700144 <artifactId>asterix-om</artifactId>
145 <version>0.8.7-SNAPSHOT</version>
146 <type>jar</type>
147 <scope>compile</scope>
148 </dependency>
149 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700150 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700151 <artifactId>asterix-metadata</artifactId>
152 <version>0.8.7-SNAPSHOT</version>
153 <type>jar</type>
154 <scope>compile</scope>
155 </dependency>
156 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700157 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700158 <artifactId>asterix-tools</artifactId>
159 <version>0.8.7-SNAPSHOT</version>
160 <type>jar</type>
161 <scope>compile</scope>
162 </dependency>
163 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700164 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700165 <artifactId>asterix-common</artifactId>
166 <version>0.8.7-SNAPSHOT</version>
167 <type>jar</type>
168 <scope>compile</scope>
169 </dependency>
170 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700171 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700172 <artifactId>asterix-common</artifactId>
173 <version>0.8.7-SNAPSHOT</version>
174 <type>test-jar</type>
175 <scope>test</scope>
176 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700177 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
178 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
179 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700180 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700181 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700182 <artifactId>asterix-transactions</artifactId>
183 <version>0.8.7-SNAPSHOT</version>
184 <scope>compile</scope>
185 </dependency>
186 <dependency>
187 <groupId>org.apache.hadoop</groupId>
188 <artifactId>hadoop-client</artifactId>
189 <type>jar</type>
190 </dependency>
191 <dependency>
192 <groupId>org.apache.hadoop</groupId>
193 <artifactId>hadoop-hdfs</artifactId>
194 <type>jar</type>
195 <scope>test</scope>
196 </dependency>
197 <dependency>
198 <groupId>xerces</groupId>
199 <artifactId>xercesImpl</artifactId>
200 <version>2.9.1</version>
201 <type>jar</type>
202 <scope>compile</scope>
203 </dependency>
204 <dependency>
205 <groupId>xalan</groupId>
206 <artifactId>xalan</artifactId>
207 <version>2.7.1</version>
208 <type>jar</type>
209 <scope>test</scope>
210 </dependency>
211 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700212 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700213 <artifactId>asterix-test-framework</artifactId>
214 <version>0.8.7-SNAPSHOT</version>
215 <scope>test</scope>
216 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700217 <dependency>
218 <groupId>org.mockito</groupId>
219 <artifactId>mockito-all</artifactId>
220 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700221 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700222 </dependency>
223 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700224 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700225 <artifactId>privilegedaccessor</artifactId>
226 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700227 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700228 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700229 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000230
231</project>