blob: 370c2780367cb7fd69eec2d4f771d1fa175fe982 [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>
Ian Maxonab556d12016-02-02 18:18:05 -080022 <artifactId>apache-asterixdb</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxona2389dd2016-02-10 15:26:12 -080024 <version>0.8.8-incubating</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
Ian Maxon6e5f18e2015-11-24 18:02:48 -080037 <properties>
38 <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory>
39 </properties>
40
Preston Carmanc66d23a2015-07-08 23:44:13 -070041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-compiler-plugin</artifactId>
46 <version>2.3.2</version>
47 <configuration>
48 <source>1.7</source>
49 <target>1.7</target>
50 <fork>true</fork>
51 </configuration>
52 </plugin>
53 <plugin>
Abdullah Alamoudi5a78ca02015-11-19 09:23:27 -080054 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-jar-plugin</artifactId>
56 <executions>
57 <execution>
58 <goals>
59 <goal>jar</goal>
60 <goal>test-jar</goal>
61 </goals>
62 </execution>
63 </executions>
64 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070065 </plugins>
66 </build>
67
68 <dependencies>
69 <dependency>
70 <groupId>javax.servlet</groupId>
71 <artifactId>servlet-api</artifactId>
72 <type>jar</type>
73 </dependency>
74 <dependency>
75 <groupId>org.eclipse.jetty</groupId>
76 <artifactId>jetty-server</artifactId>
77 <version>8.0.0.M2</version>
78 <type>jar</type>
79 <scope>compile</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.eclipse.jetty</groupId>
83 <artifactId>jetty-servlet</artifactId>
84 <version>8.0.0.M2</version>
85 <type>jar</type>
86 <scope>compile</scope>
87 </dependency>
88 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070089 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -070090 <artifactId>hyracks-control-cc</artifactId>
91 </dependency>
92 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070093 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -070094 <artifactId>hyracks-control-nc</artifactId>
95 </dependency>
96 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070097 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -070098 <artifactId>algebricks-compiler</artifactId>
99 </dependency>
100 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700101 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700102 <artifactId>hyracks-client</artifactId>
103 </dependency>
104 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700105 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700106 <artifactId>asterix-algebra</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800107 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700108 <scope>compile</scope>
109 </dependency>
110 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700111 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700112 <artifactId>asterix-aql</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800113 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700114 <type>jar</type>
115 <scope>compile</scope>
116 </dependency>
117 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700118 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700119 <artifactId>asterix-om</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800120 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700121 <type>jar</type>
122 <scope>compile</scope>
123 </dependency>
124 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700125 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700126 <artifactId>asterix-metadata</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800127 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
131 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700132 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700133 <artifactId>asterix-tools</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800134 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700139 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700140 <artifactId>asterix-common</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800141 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700142 <type>jar</type>
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-common</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800148 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700149 <type>test-jar</type>
150 <scope>test</scope>
151 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700152 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
153 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
154 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700155 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700156 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700157 <artifactId>asterix-transactions</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800158 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700159 <scope>compile</scope>
160 </dependency>
161 <dependency>
162 <groupId>org.apache.hadoop</groupId>
163 <artifactId>hadoop-client</artifactId>
164 <type>jar</type>
165 </dependency>
166 <dependency>
167 <groupId>org.apache.hadoop</groupId>
168 <artifactId>hadoop-hdfs</artifactId>
169 <type>jar</type>
170 <scope>test</scope>
171 </dependency>
172 <dependency>
173 <groupId>xerces</groupId>
174 <artifactId>xercesImpl</artifactId>
175 <version>2.9.1</version>
176 <type>jar</type>
177 <scope>compile</scope>
178 </dependency>
179 <dependency>
180 <groupId>xalan</groupId>
181 <artifactId>xalan</artifactId>
182 <version>2.7.1</version>
183 <type>jar</type>
184 <scope>test</scope>
185 </dependency>
186 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700187 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700188 <artifactId>asterix-test-framework</artifactId>
Ian Maxona2389dd2016-02-10 15:26:12 -0800189 <version>0.8.8-incubating</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700190 <scope>test</scope>
191 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700192 <dependency>
193 <groupId>org.mockito</groupId>
194 <artifactId>mockito-all</artifactId>
195 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700196 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700197 </dependency>
198 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700199 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700200 <artifactId>privilegedaccessor</artifactId>
201 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700202 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700203 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700204 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000205
206</project>