blob: 2db0974c1a85905633f59bb5e27877a425381f11 [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. ! -->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080010<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">
Chris Hillerycdfcb922014-02-07 03:05:02 -080011 <modelVersion>4.0.0</modelVersion>
12 <parent>
13 <artifactId>asterix</artifactId>
14 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070015 <version>0.8.7-SNAPSHOT</version>
Chris Hillerycdfcb922014-02-07 03:05:02 -080016 </parent>
17 <artifactId>asterix-app</artifactId>
Ian4a816dc2014-11-26 15:46:32 -080018
19 <licenses>
20 <license>
21 <name>Apache License, Version 2.0</name>
22 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23 <distribution>repo</distribution>
24 <comments>A business-friendly OSS license</comments>
25 </license>
26 </licenses>
27
vinayakb38b7ca42012-03-05 05:44:15 +000028 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070033 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000034 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000035 <source>1.7</source>
36 <target>1.7</target>
37 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000038 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>appassembler-maven-plugin</artifactId>
43 <version>1.0</version>
44 <executions>
45 <execution>
46 <configuration>
47 <programs>
48 <program>
49 <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass>
50 <name>asterix-web</name>
51 </program>
52 <program>
53 <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass>
54 <name>asterix-cmd</name>
55 </program>
vinayakbdfc7e992012-03-14 09:16:17 +000056 <program>
57 <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass>
58 <name>asterix-cli</name>
59 </program>
vinayakb38b7ca42012-03-05 05:44:15 +000060 </programs>
61 <repositoryLayout>flat</repositoryLayout>
62 <repositoryName>lib</repositoryName>
63 </configuration>
64 <phase>package</phase>
65 <goals>
66 <goal>assemble</goal>
67 </goals>
68 </execution>
69 </executions>
70 </plugin>
71 <plugin>
72 <artifactId>maven-assembly-plugin</artifactId>
73 <version>2.2-beta-5</version>
74 <executions>
75 <execution>
76 <configuration>
77 <descriptors>
78 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
79 </descriptors>
80 </configuration>
81 <phase>package</phase>
82 <goals>
83 <goal>attached</goal>
84 </goals>
85 </execution>
86 </executions>
87 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000088 </plugins>
89 </build>
90
91 <dependencies>
92 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000093 <groupId>javax.servlet</groupId>
94 <artifactId>servlet-api</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000095 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +000096 </dependency>
97 <dependency>
98 <groupId>org.eclipse.jetty</groupId>
99 <artifactId>jetty-server</artifactId>
100 <version>8.0.0.M2</version>
101 <type>jar</type>
102 <scope>compile</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.eclipse.jetty</groupId>
106 <artifactId>jetty-servlet</artifactId>
107 <version>8.0.0.M2</version>
108 <type>jar</type>
109 <scope>compile</scope>
110 </dependency>
111 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000112 <groupId>edu.uci.ics.hyracks</groupId>
113 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000114 </dependency>
115 <dependency>
116 <groupId>edu.uci.ics.hyracks</groupId>
117 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000118 </dependency>
119 <dependency>
120 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000121 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000122 </dependency>
123 <dependency>
Raman Grover68860c92013-04-19 13:30:27 -0700124 <groupId>edu.uci.ics.hyracks</groupId>
125 <artifactId>hyracks-client</artifactId>
126 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000127 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000128 <groupId>edu.uci.ics.asterix</groupId>
ramangrover298be29bd2013-06-11 08:59:44 -0700129 <artifactId>asterix-algebra</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700130 <version>0.8.7-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700131 <scope>compile</scope>
132 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000133 <dependency>
134 <groupId>edu.uci.ics.asterix</groupId>
135 <artifactId>asterix-aql</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700136 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000137 <type>jar</type>
138 <scope>compile</scope>
139 </dependency>
140 <dependency>
141 <groupId>edu.uci.ics.asterix</groupId>
142 <artifactId>asterix-om</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700143 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000144 <type>jar</type>
145 <scope>compile</scope>
146 </dependency>
147 <dependency>
148 <groupId>edu.uci.ics.asterix</groupId>
149 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700150 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000151 <type>jar</type>
152 <scope>compile</scope>
153 </dependency>
154 <dependency>
155 <groupId>edu.uci.ics.asterix</groupId>
156 <artifactId>asterix-tools</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700157 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000158 <type>jar</type>
159 <scope>compile</scope>
160 </dependency>
161 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000162 <groupId>edu.uci.ics.asterix</groupId>
163 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700164 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000165 <type>jar</type>
166 <scope>compile</scope>
167 </dependency>
168 <dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700169 <groupId>edu.uci.ics.asterix</groupId>
170 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700171 <version>0.8.7-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700172 <type>test-jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000173 <scope>test</scope>
174 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700175 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
176 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
177 <scope>test</scope> </dependency> -->
178 <dependency>
179 <groupId>edu.uci.ics.asterix</groupId>
180 <artifactId>asterix-transactions</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700181 <version>0.8.7-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700182 <scope>compile</scope>
183 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000184 <dependency>
185 <groupId>org.apache.hadoop</groupId>
Ian18997ce2014-09-22 16:14:39 -0700186 <artifactId>hadoop-client</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000187 <type>jar</type>
188 </dependency>
189 <dependency>
190 <groupId>org.apache.hadoop</groupId>
Ian18997ce2014-09-22 16:14:39 -0700191 <artifactId>hadoop-hdfs</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000192 <type>jar</type>
193 <scope>test</scope>
194 </dependency>
195 <dependency>
196 <groupId>xerces</groupId>
197 <artifactId>xercesImpl</artifactId>
198 <version>2.9.1</version>
199 <type>jar</type>
JavierJia9d3c4a92014-11-20 13:09:58 -0800200 <scope>compile</scope>
vinayakb5ee049d2013-04-06 21:21:29 +0000201 </dependency>
202 <dependency>
203 <groupId>xalan</groupId>
204 <artifactId>xalan</artifactId>
205 <version>2.7.1</version>
206 <type>jar</type>
207 <scope>test</scope>
208 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700209 <dependency>
210 <groupId>edu.uci.ics.asterix</groupId>
211 <artifactId>asterix-test-framework</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700212 <version>0.8.7-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700213 <scope>test</scope>
214 </dependency>
Yingyi Bu0bae1612015-06-17 22:45:28 -0700215 <dependency>
216 <groupId>org.mockito</groupId>
217 <artifactId>mockito-all</artifactId>
218 <version>1.10.19</version>
219 </dependency>
220 <dependency>
221 <groupId>com.e-movimento.tinytools</groupId>
222 <artifactId>privilegedaccessor</artifactId>
223 <version>1.2.2</version>
224 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000225 </dependencies>
226
227</project>