blob: 46ee7b05c949a33ae5eff6e340e462cbd0695f70 [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
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>
54 <groupId>org.codehaus.mojo</groupId>
55 <artifactId>appassembler-maven-plugin</artifactId>
56 <version>1.0</version>
57 <executions>
58 <execution>
59 <configuration>
60 <programs>
61 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070062 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070063 <name>asterix-web</name>
64 </program>
65 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070066 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070067 <name>asterix-cmd</name>
68 </program>
69 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070070 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070071 <name>asterix-cli</name>
72 </program>
73 </programs>
74 <repositoryLayout>flat</repositoryLayout>
75 <repositoryName>lib</repositoryName>
76 </configuration>
77 <phase>package</phase>
78 <goals>
79 <goal>assemble</goal>
80 </goals>
81 </execution>
82 </executions>
83 </plugin>
84 <plugin>
85 <artifactId>maven-assembly-plugin</artifactId>
86 <version>2.2-beta-5</version>
87 <executions>
88 <execution>
89 <configuration>
90 <descriptors>
91 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
92 </descriptors>
93 </configuration>
94 <phase>package</phase>
95 <goals>
96 <goal>attached</goal>
97 </goals>
98 </execution>
99 </executions>
100 </plugin>
Abdullah Alamoudi5a78ca02015-11-19 09:23:27 -0800101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-jar-plugin</artifactId>
104 <executions>
105 <execution>
106 <goals>
107 <goal>jar</goal>
108 <goal>test-jar</goal>
109 </goals>
110 </execution>
111 </executions>
112 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700113 </plugins>
114 </build>
115
116 <dependencies>
117 <dependency>
118 <groupId>javax.servlet</groupId>
119 <artifactId>servlet-api</artifactId>
120 <type>jar</type>
121 </dependency>
122 <dependency>
123 <groupId>org.eclipse.jetty</groupId>
124 <artifactId>jetty-server</artifactId>
125 <version>8.0.0.M2</version>
126 <type>jar</type>
127 <scope>compile</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.eclipse.jetty</groupId>
131 <artifactId>jetty-servlet</artifactId>
132 <version>8.0.0.M2</version>
133 <type>jar</type>
134 <scope>compile</scope>
135 </dependency>
136 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700137 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700138 <artifactId>hyracks-control-cc</artifactId>
139 </dependency>
140 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700141 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700142 <artifactId>hyracks-control-nc</artifactId>
143 </dependency>
144 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700145 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700146 <artifactId>algebricks-compiler</artifactId>
147 </dependency>
148 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700149 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700150 <artifactId>hyracks-client</artifactId>
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-algebra</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700155 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700156 <scope>compile</scope>
157 </dependency>
158 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700159 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700160 <artifactId>asterix-aql</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700161 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700162 <type>jar</type>
163 <scope>compile</scope>
164 </dependency>
165 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700166 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700167 <artifactId>asterix-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700168 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700169 <type>jar</type>
170 <scope>compile</scope>
171 </dependency>
172 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700173 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700174 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700175 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700176 <type>jar</type>
177 <scope>compile</scope>
178 </dependency>
179 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700180 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700181 <artifactId>asterix-tools</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700182 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700183 <type>jar</type>
184 <scope>compile</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-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700189 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700190 <type>jar</type>
191 <scope>compile</scope>
192 </dependency>
193 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700194 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700195 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700196 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700197 <type>test-jar</type>
198 <scope>test</scope>
199 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700200 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
201 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
202 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700203 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700204 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700205 <artifactId>asterix-transactions</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700206 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700207 <scope>compile</scope>
208 </dependency>
209 <dependency>
210 <groupId>org.apache.hadoop</groupId>
211 <artifactId>hadoop-client</artifactId>
212 <type>jar</type>
213 </dependency>
214 <dependency>
215 <groupId>org.apache.hadoop</groupId>
216 <artifactId>hadoop-hdfs</artifactId>
217 <type>jar</type>
218 <scope>test</scope>
219 </dependency>
220 <dependency>
221 <groupId>xerces</groupId>
222 <artifactId>xercesImpl</artifactId>
223 <version>2.9.1</version>
224 <type>jar</type>
225 <scope>compile</scope>
226 </dependency>
227 <dependency>
228 <groupId>xalan</groupId>
229 <artifactId>xalan</artifactId>
230 <version>2.7.1</version>
231 <type>jar</type>
232 <scope>test</scope>
233 </dependency>
234 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700235 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700236 <artifactId>asterix-test-framework</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700237 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700238 <scope>test</scope>
239 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700240 <dependency>
241 <groupId>org.mockito</groupId>
242 <artifactId>mockito-all</artifactId>
243 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700244 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700245 </dependency>
246 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700247 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700248 <artifactId>privilegedaccessor</artifactId>
249 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700250 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700251 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700252 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000253
254</project>