blob: 66382e61a9f5c8f11f2b8f0301e5b0955be02dd9 [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
Murtadha Hubail209f3902015-11-11 22:11:28 -080028 <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>
Preston Carmanc66d23a2015-07-08 23:44:13 -070036 <build>
37 <plugins>
38 <plugin>
Preston Carmanc66d23a2015-07-08 23:44:13 -070039 <groupId>org.codehaus.mojo</groupId>
40 <artifactId>appassembler-maven-plugin</artifactId>
41 <version>1.0</version>
42 <executions>
43 <execution>
44 <configuration>
45 <programs>
46 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070047 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070048 <name>asterix-web</name>
49 </program>
50 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070051 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070052 <name>asterix-cmd</name>
53 </program>
54 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070055 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070056 <name>asterix-cli</name>
57 </program>
58 </programs>
59 <repositoryLayout>flat</repositoryLayout>
60 <repositoryName>lib</repositoryName>
61 </configuration>
62 <phase>package</phase>
63 <goals>
64 <goal>assemble</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <artifactId>maven-assembly-plugin</artifactId>
71 <version>2.2-beta-5</version>
72 <executions>
73 <execution>
74 <configuration>
75 <descriptors>
76 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
77 </descriptors>
78 </configuration>
79 <phase>package</phase>
80 <goals>
81 <goal>attached</goal>
82 </goals>
83 </execution>
84 </executions>
85 </plugin>
86 </plugins>
87 </build>
88
89 <dependencies>
90 <dependency>
91 <groupId>javax.servlet</groupId>
92 <artifactId>servlet-api</artifactId>
93 <type>jar</type>
94 </dependency>
95 <dependency>
96 <groupId>org.eclipse.jetty</groupId>
97 <artifactId>jetty-server</artifactId>
98 <version>8.0.0.M2</version>
99 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.eclipse.jetty</groupId>
104 <artifactId>jetty-servlet</artifactId>
105 <version>8.0.0.M2</version>
106 <type>jar</type>
107 <scope>compile</scope>
108 </dependency>
109 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700110 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700111 <artifactId>hyracks-control-cc</artifactId>
112 </dependency>
113 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700114 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700115 <artifactId>hyracks-control-nc</artifactId>
116 </dependency>
117 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700118 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700119 <artifactId>algebricks-compiler</artifactId>
120 </dependency>
121 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700122 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700123 <artifactId>hyracks-client</artifactId>
124 </dependency>
125 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700126 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700127 <artifactId>asterix-algebra</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700128 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700129 <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-om</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700134 <version>0.8.8-SNAPSHOT</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-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700141 <version>0.8.8-SNAPSHOT</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-tools</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700148 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700149 <type>jar</type>
150 <scope>compile</scope>
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-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700155 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
159 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700160 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700161 <artifactId>asterix-common</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700162 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700163 <type>test-jar</type>
164 <scope>test</scope>
165 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700166 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
167 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
168 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700169 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700170 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700171 <artifactId>asterix-transactions</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700172 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700173 <scope>compile</scope>
174 </dependency>
175 <dependency>
176 <groupId>org.apache.hadoop</groupId>
177 <artifactId>hadoop-client</artifactId>
178 <type>jar</type>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.hadoop</groupId>
182 <artifactId>hadoop-hdfs</artifactId>
183 <type>jar</type>
184 <scope>test</scope>
185 </dependency>
186 <dependency>
187 <groupId>xerces</groupId>
188 <artifactId>xercesImpl</artifactId>
189 <version>2.9.1</version>
190 <type>jar</type>
191 <scope>compile</scope>
192 </dependency>
193 <dependency>
194 <groupId>xalan</groupId>
195 <artifactId>xalan</artifactId>
196 <version>2.7.1</version>
197 <type>jar</type>
198 <scope>test</scope>
199 </dependency>
200 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700201 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700202 <artifactId>asterix-test-framework</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700203 <version>0.8.8-SNAPSHOT</version>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700204 <scope>test</scope>
205 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700206 <dependency>
207 <groupId>org.mockito</groupId>
208 <artifactId>mockito-all</artifactId>
209 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700210 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700211 </dependency>
212 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700213 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700214 <artifactId>privilegedaccessor</artifactId>
215 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700216 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700217 </dependency>
Murtadha Hubail209f3902015-11-11 22:11:28 -0800218 <dependency>
219 <groupId>org.apache.asterix</groupId>
220 <artifactId>asterix-replication</artifactId>
221 <version>0.8.8-SNAPSHOT</version>
222 <scope>compile</scope>
223 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700224 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000225</project>