blob: 686bdb093e7f55d7f2dc17796ca5896f0e16b9cb [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>
Preston Carmanc66d23a2015-07-08 23:44:13 -070040 <groupId>org.codehaus.mojo</groupId>
41 <artifactId>appassembler-maven-plugin</artifactId>
42 <version>1.0</version>
43 <executions>
44 <execution>
45 <configuration>
46 <programs>
47 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070048 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070049 <name>asterix-web</name>
50 </program>
51 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070052 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070053 <name>asterix-cmd</name>
54 </program>
55 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070056 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070057 <name>asterix-cli</name>
58 </program>
59 </programs>
60 <repositoryLayout>flat</repositoryLayout>
61 <repositoryName>lib</repositoryName>
62 </configuration>
63 <phase>package</phase>
64 <goals>
65 <goal>assemble</goal>
66 </goals>
67 </execution>
68 </executions>
69 </plugin>
70 <plugin>
71 <artifactId>maven-assembly-plugin</artifactId>
72 <version>2.2-beta-5</version>
73 <executions>
74 <execution>
75 <configuration>
76 <descriptors>
77 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
78 </descriptors>
79 </configuration>
80 <phase>package</phase>
81 <goals>
82 <goal>attached</goal>
83 </goals>
84 </execution>
85 </executions>
86 </plugin>
87 </plugins>
88 </build>
89
90 <dependencies>
91 <dependency>
92 <groupId>javax.servlet</groupId>
93 <artifactId>servlet-api</artifactId>
94 <type>jar</type>
95 </dependency>
96 <dependency>
97 <groupId>org.eclipse.jetty</groupId>
98 <artifactId>jetty-server</artifactId>
99 <version>8.0.0.M2</version>
100 <type>jar</type>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.eclipse.jetty</groupId>
105 <artifactId>jetty-servlet</artifactId>
106 <version>8.0.0.M2</version>
107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700111 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700112 <artifactId>hyracks-control-cc</artifactId>
113 </dependency>
114 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700115 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700116 <artifactId>hyracks-control-nc</artifactId>
117 </dependency>
118 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700119 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700120 <artifactId>algebricks-compiler</artifactId>
121 </dependency>
122 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700123 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700124 <artifactId>hyracks-client</artifactId>
125 </dependency>
126 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700127 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700128 <artifactId>asterix-algebra</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700129 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700130 <scope>compile</scope>
131 </dependency>
132 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700133 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700134 <artifactId>asterix-aql</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700135 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700136 <type>jar</type>
137 <scope>compile</scope>
138 </dependency>
139 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700140 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700141 <artifactId>asterix-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700142 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700143 <type>jar</type>
144 <scope>compile</scope>
145 </dependency>
146 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700147 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700148 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700149 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700150 <type>jar</type>
151 <scope>compile</scope>
152 </dependency>
153 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700154 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700155 <artifactId>asterix-tools</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700156 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700157 <type>jar</type>
158 <scope>compile</scope>
159 </dependency>
160 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700161 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700162 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700163 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700164 <type>jar</type>
165 <scope>compile</scope>
166 </dependency>
167 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700168 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700169 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700170 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700171 <type>test-jar</type>
172 <scope>test</scope>
173 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700174 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
175 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
176 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700177 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700178 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700179 <artifactId>asterix-transactions</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700180 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700181 <scope>compile</scope>
182 </dependency>
183 <dependency>
184 <groupId>org.apache.hadoop</groupId>
185 <artifactId>hadoop-client</artifactId>
186 <type>jar</type>
187 </dependency>
188 <dependency>
189 <groupId>org.apache.hadoop</groupId>
190 <artifactId>hadoop-hdfs</artifactId>
191 <type>jar</type>
192 <scope>test</scope>
193 </dependency>
194 <dependency>
195 <groupId>xerces</groupId>
196 <artifactId>xercesImpl</artifactId>
197 <version>2.9.1</version>
198 <type>jar</type>
199 <scope>compile</scope>
200 </dependency>
201 <dependency>
202 <groupId>xalan</groupId>
203 <artifactId>xalan</artifactId>
204 <version>2.7.1</version>
205 <type>jar</type>
206 <scope>test</scope>
207 </dependency>
208 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700209 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700210 <artifactId>asterix-test-framework</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700211 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700212 <scope>test</scope>
213 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700214 <dependency>
215 <groupId>org.mockito</groupId>
216 <artifactId>mockito-all</artifactId>
217 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700218 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700219 </dependency>
220 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700221 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700222 <artifactId>privilegedaccessor</artifactId>
223 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700224 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700225 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700226 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000227
228</project>