blob: 85c9336fc20a6f6e469190a85efb2e3b1b6559b3 [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>
Abdullah Alamoudi5a78ca02015-11-19 09:23:27 -080097 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-jar-plugin</artifactId>
100 <executions>
101 <execution>
102 <goals>
103 <goal>jar</goal>
104 <goal>test-jar</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700109 </plugins>
110 </build>
111
112 <dependencies>
113 <dependency>
114 <groupId>javax.servlet</groupId>
115 <artifactId>servlet-api</artifactId>
116 <type>jar</type>
117 </dependency>
118 <dependency>
119 <groupId>org.eclipse.jetty</groupId>
120 <artifactId>jetty-server</artifactId>
121 <version>8.0.0.M2</version>
122 <type>jar</type>
123 <scope>compile</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.eclipse.jetty</groupId>
127 <artifactId>jetty-servlet</artifactId>
128 <version>8.0.0.M2</version>
129 <type>jar</type>
130 <scope>compile</scope>
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-control-cc</artifactId>
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-nc</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>algebricks-compiler</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>hyracks-client</artifactId>
147 </dependency>
148 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700149 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700150 <artifactId>asterix-algebra</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700151 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700152 <scope>compile</scope>
153 </dependency>
154 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700155 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700156 <artifactId>asterix-aql</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700157 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700158 <type>jar</type>
159 <scope>compile</scope>
160 </dependency>
161 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700162 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700163 <artifactId>asterix-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700164 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700165 <type>jar</type>
166 <scope>compile</scope>
167 </dependency>
168 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700169 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700170 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700171 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700172 <type>jar</type>
173 <scope>compile</scope>
174 </dependency>
175 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700176 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700177 <artifactId>asterix-tools</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700178 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700179 <type>jar</type>
180 <scope>compile</scope>
181 </dependency>
182 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700183 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700184 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700185 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700186 <type>jar</type>
187 <scope>compile</scope>
188 </dependency>
189 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700190 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700191 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700192 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700193 <type>test-jar</type>
194 <scope>test</scope>
195 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700196 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
197 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
198 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700199 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700200 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700201 <artifactId>asterix-transactions</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700202 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700203 <scope>compile</scope>
204 </dependency>
205 <dependency>
206 <groupId>org.apache.hadoop</groupId>
207 <artifactId>hadoop-client</artifactId>
208 <type>jar</type>
209 </dependency>
210 <dependency>
211 <groupId>org.apache.hadoop</groupId>
212 <artifactId>hadoop-hdfs</artifactId>
213 <type>jar</type>
214 <scope>test</scope>
215 </dependency>
216 <dependency>
217 <groupId>xerces</groupId>
218 <artifactId>xercesImpl</artifactId>
219 <version>2.9.1</version>
220 <type>jar</type>
221 <scope>compile</scope>
222 </dependency>
223 <dependency>
224 <groupId>xalan</groupId>
225 <artifactId>xalan</artifactId>
226 <version>2.7.1</version>
227 <type>jar</type>
228 <scope>test</scope>
229 </dependency>
230 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700231 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700232 <artifactId>asterix-test-framework</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700233 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700234 <scope>test</scope>
235 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700236 <dependency>
237 <groupId>org.mockito</groupId>
238 <artifactId>mockito-all</artifactId>
239 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700240 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700241 </dependency>
242 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700243 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700244 <artifactId>privilegedaccessor</artifactId>
245 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700246 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700247 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700248 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000249
250</project>