blob: b98b81e0b6811f982977ab087d6782eae4c3ce26 [file] [log] [blame]
ramangrover298be29bd2013-06-11 08:59:44 -07001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
Preston Carmanc66d23a2015-07-08 23:44:13 -070010<project
11 xmlns="http://maven.apache.org/POM/4.0.0"
12 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14 <modelVersion>4.0.0</modelVersion>
15 <parent>
16 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070017 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -070018 <version>0.8.7-SNAPSHOT</version>
19 </parent>
20 <artifactId>asterix-app</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000021
Preston Carmanc66d23a2015-07-08 23:44:13 -070022 <licenses>
23 <license>
24 <name>Apache License, Version 2.0</name>
25 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
26 <distribution>repo</distribution>
27 <comments>A business-friendly OSS license</comments>
28 </license>
29 </licenses>
30
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-compiler-plugin</artifactId>
36 <version>2.3.2</version>
37 <configuration>
38 <source>1.7</source>
39 <target>1.7</target>
40 <fork>true</fork>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.codehaus.mojo</groupId>
45 <artifactId>appassembler-maven-plugin</artifactId>
46 <version>1.0</version>
47 <executions>
48 <execution>
49 <configuration>
50 <programs>
51 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070052 <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070053 <name>asterix-web</name>
54 </program>
55 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070056 <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070057 <name>asterix-cmd</name>
58 </program>
59 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070060 <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass>
Preston Carmanc66d23a2015-07-08 23:44:13 -070061 <name>asterix-cli</name>
62 </program>
63 </programs>
64 <repositoryLayout>flat</repositoryLayout>
65 <repositoryName>lib</repositoryName>
66 </configuration>
67 <phase>package</phase>
68 <goals>
69 <goal>assemble</goal>
70 </goals>
71 </execution>
72 </executions>
73 </plugin>
74 <plugin>
75 <artifactId>maven-assembly-plugin</artifactId>
76 <version>2.2-beta-5</version>
77 <executions>
78 <execution>
79 <configuration>
80 <descriptors>
81 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
82 </descriptors>
83 </configuration>
84 <phase>package</phase>
85 <goals>
86 <goal>attached</goal>
87 </goals>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
92 </build>
93
94 <dependencies>
95 <dependency>
96 <groupId>javax.servlet</groupId>
97 <artifactId>servlet-api</artifactId>
98 <type>jar</type>
99 </dependency>
100 <dependency>
101 <groupId>org.eclipse.jetty</groupId>
102 <artifactId>jetty-server</artifactId>
103 <version>8.0.0.M2</version>
104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.eclipse.jetty</groupId>
109 <artifactId>jetty-servlet</artifactId>
110 <version>8.0.0.M2</version>
111 <type>jar</type>
112 <scope>compile</scope>
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-cc</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>hyracks-control-nc</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>algebricks-compiler</artifactId>
125 </dependency>
126 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700127 <groupId>org.apache.hyracks</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700128 <artifactId>hyracks-client</artifactId>
129 </dependency>
130 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700131 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700132 <artifactId>asterix-algebra</artifactId>
133 <version>0.8.7-SNAPSHOT</version>
134 <scope>compile</scope>
135 </dependency>
136 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700137 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700138 <artifactId>asterix-aql</artifactId>
139 <version>0.8.7-SNAPSHOT</version>
140 <type>jar</type>
141 <scope>compile</scope>
142 </dependency>
143 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700144 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700145 <artifactId>asterix-om</artifactId>
146 <version>0.8.7-SNAPSHOT</version>
147 <type>jar</type>
148 <scope>compile</scope>
149 </dependency>
150 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700151 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700152 <artifactId>asterix-metadata</artifactId>
153 <version>0.8.7-SNAPSHOT</version>
154 <type>jar</type>
155 <scope>compile</scope>
156 </dependency>
157 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700158 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700159 <artifactId>asterix-tools</artifactId>
160 <version>0.8.7-SNAPSHOT</version>
161 <type>jar</type>
162 <scope>compile</scope>
163 </dependency>
164 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700165 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700166 <artifactId>asterix-common</artifactId>
167 <version>0.8.7-SNAPSHOT</version>
168 <type>jar</type>
169 <scope>compile</scope>
170 </dependency>
171 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700172 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700173 <artifactId>asterix-common</artifactId>
174 <version>0.8.7-SNAPSHOT</version>
175 <type>test-jar</type>
176 <scope>test</scope>
177 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700178 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
179 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
180 <scope>test</scope> </dependency> -->
Preston Carmanc66d23a2015-07-08 23:44:13 -0700181 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700182 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700183 <artifactId>asterix-transactions</artifactId>
184 <version>0.8.7-SNAPSHOT</version>
185 <scope>compile</scope>
186 </dependency>
187 <dependency>
188 <groupId>org.apache.hadoop</groupId>
189 <artifactId>hadoop-client</artifactId>
190 <type>jar</type>
191 </dependency>
192 <dependency>
193 <groupId>org.apache.hadoop</groupId>
194 <artifactId>hadoop-hdfs</artifactId>
195 <type>jar</type>
196 <scope>test</scope>
197 </dependency>
198 <dependency>
199 <groupId>xerces</groupId>
200 <artifactId>xercesImpl</artifactId>
201 <version>2.9.1</version>
202 <type>jar</type>
203 <scope>compile</scope>
204 </dependency>
205 <dependency>
206 <groupId>xalan</groupId>
207 <artifactId>xalan</artifactId>
208 <version>2.7.1</version>
209 <type>jar</type>
210 <scope>test</scope>
211 </dependency>
212 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700213 <groupId>org.apache.asterix</groupId>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700214 <artifactId>asterix-test-framework</artifactId>
215 <version>0.8.7-SNAPSHOT</version>
216 <scope>test</scope>
217 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700218 <dependency>
219 <groupId>org.mockito</groupId>
220 <artifactId>mockito-all</artifactId>
221 <version>1.10.19</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700222 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700223 </dependency>
224 <dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700225 <groupId>com.e-movimento.tinytools</groupId>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700226 <artifactId>privilegedaccessor</artifactId>
227 <version>1.2.2</version>
Yingyi Budf6d42d2015-07-18 22:13:25 -0700228 <scope>test</scope>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700229 </dependency>
Preston Carmanc66d23a2015-07-08 23:44:13 -0700230 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000231
232</project>