blob: 036052976b7a36b9c99914b174c4a4a6ac7964a3 [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>
vinayakb38b7ca42012-03-05 05:44:15 +000027
Murtadha Hubail209f3902015-11-11 22:11:28 -080028 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
Preston Carmanc66d23a2015-07-08 23:44:13 -070036 <build>
37 <plugins>
38 <plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070039 <groupId>org.codehaus.mojo</groupId>
40 <artifactId>appassembler-maven-plugin</artifactId>
41 <version>1.0</version>
42 <executions>
43 <execution>
44 <configuration>
45 <programs>
46 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070047 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070048 <name>asterix-web</name>
49 </program>
50 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070051 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070052 <name>asterix-cmd</name>
53 </program>
54 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070055 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070056 <name>asterix-cli</name>
57 </program>
58 </programs>
59 <repositoryLayout>flat</repositoryLayout>
60 <repositoryName>lib</repositoryName>
61 </configuration>
62 <phase>package</phase>
63 <goals>
64 <goal>assemble</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <artifactId>maven-assembly-plugin</artifactId>
71 <version>2.2-beta-5</version>
72 <executions>
73 <execution>
74 <configuration>
75 <descriptors>
76 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
77 </descriptors>
78 </configuration>
79 <phase>package</phase>
80 <goals>
81 <goal>attached</goal>
82 </goals>
83 </execution>
84 </executions>
85 </plugin>
Ian Maxonf7b64532015-12-09 17:28:18 -080086 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-jar-plugin</artifactId>
89 <executions>
90 <execution>
91 <goals>
92 <goal>jar</goal>
93 <goal>test-jar</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070098 </plugins>
99 </build>
100
101 <dependencies>
102 <dependency>
103 <groupId>javax.servlet</groupId>
104 <artifactId>servlet-api</artifactId>
105 <type>jar</type>
106 </dependency>
107 <dependency>
108 <groupId>org.eclipse.jetty</groupId>
109 <artifactId>jetty-server</artifactId>
110 <version>8.0.0.M2</version>
111 <type>jar</type>
112 <scope>compile</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.eclipse.jetty</groupId>
116 <artifactId>jetty-servlet</artifactId>
117 <version>8.0.0.M2</version>
118 <type>jar</type>
119 <scope>compile</scope>
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>hyracks-control-cc</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-control-nc</artifactId>
128 </dependency>
129 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700130 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700131 <artifactId>algebricks-compiler</artifactId>
132 </dependency>
133 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700134 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700135 <artifactId>hyracks-client</artifactId>
136 </dependency>
137 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700138 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700139 <artifactId>asterix-algebra</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700140 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700141 <scope>compile</scope>
142 </dependency>
143 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700144 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700145 <artifactId>asterix-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700146 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700147 <type>jar</type>
148 <scope>compile</scope>
149 </dependency>
150 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700151 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700152 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700153 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700154 <type>jar</type>
155 <scope>compile</scope>
156 </dependency>
157 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700158 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700159 <artifactId>asterix-tools</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700160 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700161 <type>jar</type>
162 <scope>compile</scope>
163 </dependency>
164 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700165 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700166 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700167 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700168 <type>jar</type>
169 <scope>compile</scope>
170 </dependency>
171 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700172 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700173 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700174 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700175 <type>test-jar</type>
176 <scope>test</scope>
177 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700178 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
179 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
180 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700181 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700182 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700183 <artifactId>asterix-transactions</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700184 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700185 <scope>compile</scope>
186 </dependency>
187 <dependency>
188 <groupId>org.apache.hadoop</groupId>
189 <artifactId>hadoop-client</artifactId>
190 <type>jar</type>
191 </dependency>
192 <dependency>
193 <groupId>org.apache.hadoop</groupId>
194 <artifactId>hadoop-hdfs</artifactId>
195 <type>jar</type>
196 <scope>test</scope>
197 </dependency>
198 <dependency>
199 <groupId>xerces</groupId>
200 <artifactId>xercesImpl</artifactId>
201 <version>2.9.1</version>
202 <type>jar</type>
203 <scope>compile</scope>
204 </dependency>
205 <dependency>
206 <groupId>xalan</groupId>
207 <artifactId>xalan</artifactId>
208 <version>2.7.1</version>
209 <type>jar</type>
210 <scope>test</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-test-framework</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700215 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700216 <scope>test</scope>
217 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700218 <dependency>
219 <groupId>org.mockito</groupId>
220 <artifactId>mockito-all</artifactId>
221 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700222 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700223 </dependency>
224 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700225 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700226 <artifactId>privilegedaccessor</artifactId>
227 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700228 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700229 </dependency>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800230 <dependency>
231 <groupId>org.apache.asterix</groupId>
232 <artifactId>asterix-replication</artifactId>
233 <version>0.8.8-SNAPSHOT</version>
234 <scope>compile</scope>
235 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700236 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000237</project>