blob: 95d9e299bcb9cb8ede9d4ed7aa50a53e12ee9dfe [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>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-compiler-plugin</artifactId>
45 <version>2.3.2</version>
46 <configuration>
47 <source>1.7</source>
48 <target>1.7</target>
49 <fork>true</fork>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.codehaus.mojo</groupId>
54 <artifactId>appassembler-maven-plugin</artifactId>
55 <version>1.0</version>
56 <executions>
57 <execution>
58 <configuration>
59 <programs>
60 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070061 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070062 <name>asterix-web</name>
63 </program>
64 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070065 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070066 <name>asterix-cmd</name>
67 </program>
68 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070069 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070070 <name>asterix-cli</name>
71 </program>
72 </programs>
73 <repositoryLayout>flat</repositoryLayout>
74 <repositoryName>lib</repositoryName>
75 </configuration>
76 <phase>package</phase>
77 <goals>
78 <goal>assemble</goal>
79 </goals>
80 </execution>
81 </executions>
82 </plugin>
83 <plugin>
84 <artifactId>maven-assembly-plugin</artifactId>
85 <version>2.2-beta-5</version>
86 <executions>
87 <execution>
88 <configuration>
89 <descriptors>
90 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
91 </descriptors>
92 </configuration>
93 <phase>package</phase>
94 <goals>
95 <goal>attached</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100 </plugins>
101 </build>
102
103 <dependencies>
104 <dependency>
105 <groupId>javax.servlet</groupId>
106 <artifactId>servlet-api</artifactId>
107 <type>jar</type>
108 </dependency>
109 <dependency>
110 <groupId>org.eclipse.jetty</groupId>
111 <artifactId>jetty-server</artifactId>
112 <version>8.0.0.M2</version>
113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.eclipse.jetty</groupId>
118 <artifactId>jetty-servlet</artifactId>
119 <version>8.0.0.M2</version>
120 <type>jar</type>
121 <scope>compile</scope>
122 </dependency>
123 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700124 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700125 <artifactId>hyracks-control-cc</artifactId>
126 </dependency>
127 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700128 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700129 <artifactId>hyracks-control-nc</artifactId>
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>algebricks-compiler</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-client</artifactId>
138 </dependency>
139 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700140 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700141 <artifactId>asterix-algebra</artifactId>
142 <version>0.8.7-SNAPSHOT</version>
143 <scope>compile</scope>
144 </dependency>
145 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700146 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700147 <artifactId>asterix-aql</artifactId>
148 <version>0.8.7-SNAPSHOT</version>
149 <type>jar</type>
150 <scope>compile</scope>
151 </dependency>
152 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700153 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700154 <artifactId>asterix-om</artifactId>
155 <version>0.8.7-SNAPSHOT</version>
156 <type>jar</type>
157 <scope>compile</scope>
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-metadata</artifactId>
162 <version>0.8.7-SNAPSHOT</version>
163 <type>jar</type>
164 <scope>compile</scope>
165 </dependency>
166 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700167 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700168 <artifactId>asterix-tools</artifactId>
169 <version>0.8.7-SNAPSHOT</version>
170 <type>jar</type>
171 <scope>compile</scope>
172 </dependency>
173 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700174 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700175 <artifactId>asterix-common</artifactId>
176 <version>0.8.7-SNAPSHOT</version>
177 <type>jar</type>
178 <scope>compile</scope>
179 </dependency>
180 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700181 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700182 <artifactId>asterix-common</artifactId>
183 <version>0.8.7-SNAPSHOT</version>
184 <type>test-jar</type>
185 <scope>test</scope>
186 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700187 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
188 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
189 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700190 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700191 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700192 <artifactId>asterix-transactions</artifactId>
193 <version>0.8.7-SNAPSHOT</version>
194 <scope>compile</scope>
195 </dependency>
196 <dependency>
197 <groupId>org.apache.hadoop</groupId>
198 <artifactId>hadoop-client</artifactId>
199 <type>jar</type>
200 </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>
208 <groupId>xerces</groupId>
209 <artifactId>xercesImpl</artifactId>
210 <version>2.9.1</version>
211 <type>jar</type>
212 <scope>compile</scope>
213 </dependency>
214 <dependency>
215 <groupId>xalan</groupId>
216 <artifactId>xalan</artifactId>
217 <version>2.7.1</version>
218 <type>jar</type>
219 <scope>test</scope>
220 </dependency>
221 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700222 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700223 <artifactId>asterix-test-framework</artifactId>
224 <version>0.8.7-SNAPSHOT</version>
225 <scope>test</scope>
226 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700227 <dependency>
228 <groupId>org.mockito</groupId>
229 <artifactId>mockito-all</artifactId>
230 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700231 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700232 </dependency>
233 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700234 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700235 <artifactId>privilegedaccessor</artifactId>
236 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700237 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700238 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700239 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000240
241</project>