blob: c9a1b8efe63594fff23cdcd8abb41517ee59a0ba [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
Preston Carmanc66d23a2015-07-08 23:44:13 -070028 <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>
36
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
42 <version>2.3.2</version>
43 <configuration>
44 <source>1.7</source>
45 <target>1.7</target>
46 <fork>true</fork>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.codehaus.mojo</groupId>
51 <artifactId>appassembler-maven-plugin</artifactId>
52 <version>1.0</version>
53 <executions>
54 <execution>
55 <configuration>
56 <programs>
57 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070058 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070059 <name>asterix-web</name>
60 </program>
61 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070062 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070063 <name>asterix-cmd</name>
64 </program>
65 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070066 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070067 <name>asterix-cli</name>
68 </program>
69 </programs>
70 <repositoryLayout>flat</repositoryLayout>
71 <repositoryName>lib</repositoryName>
72 </configuration>
73 <phase>package</phase>
74 <goals>
75 <goal>assemble</goal>
76 </goals>
77 </execution>
78 </executions>
79 </plugin>
80 <plugin>
81 <artifactId>maven-assembly-plugin</artifactId>
82 <version>2.2-beta-5</version>
83 <executions>
84 <execution>
85 <configuration>
86 <descriptors>
87 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
88 </descriptors>
89 </configuration>
90 <phase>package</phase>
91 <goals>
92 <goal>attached</goal>
93 </goals>
94 </execution>
95 </executions>
96 </plugin>
97 </plugins>
98 </build>
99
100 <dependencies>
101 <dependency>
102 <groupId>javax.servlet</groupId>
103 <artifactId>servlet-api</artifactId>
104 <type>jar</type>
105 </dependency>
106 <dependency>
107 <groupId>org.eclipse.jetty</groupId>
108 <artifactId>jetty-server</artifactId>
109 <version>8.0.0.M2</version>
110 <type>jar</type>
111 <scope>compile</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.eclipse.jetty</groupId>
115 <artifactId>jetty-servlet</artifactId>
116 <version>8.0.0.M2</version>
117 <type>jar</type>
118 <scope>compile</scope>
119 </dependency>
120 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700121 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700122 <artifactId>hyracks-control-cc</artifactId>
123 </dependency>
124 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700125 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700126 <artifactId>hyracks-control-nc</artifactId>
127 </dependency>
128 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700129 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700130 <artifactId>algebricks-compiler</artifactId>
131 </dependency>
132 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700133 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700134 <artifactId>hyracks-client</artifactId>
135 </dependency>
136 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700137 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700138 <artifactId>asterix-algebra</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700139 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700140 <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-aql</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700145 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700146 <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-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700152 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700153 <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-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700159 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700160 <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-tools</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700166 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700167 <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>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700173 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700174 <type>jar</type>
175 <scope>compile</scope>
176 </dependency>
177 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700178 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700179 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700180 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700181 <type>test-jar</type>
182 <scope>test</scope>
183 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700184 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
185 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
186 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700187 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700188 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700189 <artifactId>asterix-transactions</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700190 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700191 <scope>compile</scope>
192 </dependency>
193 <dependency>
194 <groupId>org.apache.hadoop</groupId>
195 <artifactId>hadoop-client</artifactId>
196 <type>jar</type>
197 </dependency>
198 <dependency>
199 <groupId>org.apache.hadoop</groupId>
200 <artifactId>hadoop-hdfs</artifactId>
201 <type>jar</type>
202 <scope>test</scope>
203 </dependency>
204 <dependency>
205 <groupId>xerces</groupId>
206 <artifactId>xercesImpl</artifactId>
207 <version>2.9.1</version>
208 <type>jar</type>
209 <scope>compile</scope>
210 </dependency>
211 <dependency>
212 <groupId>xalan</groupId>
213 <artifactId>xalan</artifactId>
214 <version>2.7.1</version>
215 <type>jar</type>
216 <scope>test</scope>
217 </dependency>
218 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700219 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700220 <artifactId>asterix-test-framework</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700221 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700222 <scope>test</scope>
223 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700224 <dependency>
225 <groupId>org.mockito</groupId>
226 <artifactId>mockito-all</artifactId>
227 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700228 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700229 </dependency>
230 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700231 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700232 <artifactId>privilegedaccessor</artifactId>
233 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700234 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700235 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700236 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000237
238</project>