blob: 7bfd2d96241494ed7db0034174d85a7395a774bb [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>
18
vinayakb38b7ca42012-03-05 05:44:15 +000019 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070024 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000025 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000026 <source>1.7</source>
27 <target>1.7</target>
28 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000029 </configuration>
30 </plugin>
31 <plugin>
32 <groupId>org.codehaus.mojo</groupId>
33 <artifactId>appassembler-maven-plugin</artifactId>
34 <version>1.0</version>
35 <executions>
36 <execution>
37 <configuration>
38 <programs>
39 <program>
40 <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass>
41 <name>asterix-web</name>
42 </program>
43 <program>
44 <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass>
45 <name>asterix-cmd</name>
46 </program>
vinayakbdfc7e992012-03-14 09:16:17 +000047 <program>
48 <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass>
49 <name>asterix-cli</name>
50 </program>
vinayakb38b7ca42012-03-05 05:44:15 +000051 </programs>
52 <repositoryLayout>flat</repositoryLayout>
53 <repositoryName>lib</repositoryName>
54 </configuration>
55 <phase>package</phase>
56 <goals>
57 <goal>assemble</goal>
58 </goals>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <artifactId>maven-assembly-plugin</artifactId>
64 <version>2.2-beta-5</version>
65 <executions>
66 <execution>
67 <configuration>
68 <descriptors>
69 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
70 </descriptors>
71 </configuration>
72 <phase>package</phase>
73 <goals>
74 <goal>attached</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000079 </plugins>
80 </build>
81
82 <dependencies>
83 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000084 <groupId>javax.servlet</groupId>
85 <artifactId>servlet-api</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000086 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +000087 </dependency>
88 <dependency>
89 <groupId>org.eclipse.jetty</groupId>
90 <artifactId>jetty-server</artifactId>
91 <version>8.0.0.M2</version>
92 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.eclipse.jetty</groupId>
97 <artifactId>jetty-servlet</artifactId>
98 <version>8.0.0.M2</version>
99 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000103 <groupId>edu.uci.ics.hyracks</groupId>
104 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000105 </dependency>
106 <dependency>
107 <groupId>edu.uci.ics.hyracks</groupId>
108 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000109 </dependency>
110 <dependency>
111 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000112 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000113 </dependency>
114 <dependency>
Raman Grover68860c92013-04-19 13:30:27 -0700115 <groupId>edu.uci.ics.hyracks</groupId>
116 <artifactId>hyracks-client</artifactId>
117 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000118 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000119 <groupId>edu.uci.ics.asterix</groupId>
ramangrover298be29bd2013-06-11 08:59:44 -0700120 <artifactId>asterix-algebra</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700121 <version>0.8.7-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700122 <scope>compile</scope>
123 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000124 <dependency>
125 <groupId>edu.uci.ics.asterix</groupId>
126 <artifactId>asterix-aql</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700127 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
131 <dependency>
132 <groupId>edu.uci.ics.asterix</groupId>
133 <artifactId>asterix-om</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700134 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
139 <groupId>edu.uci.ics.asterix</groupId>
140 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700141 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000142 <type>jar</type>
143 <scope>compile</scope>
144 </dependency>
145 <dependency>
146 <groupId>edu.uci.ics.asterix</groupId>
147 <artifactId>asterix-tools</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700148 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000149 <type>jar</type>
150 <scope>compile</scope>
151 </dependency>
152 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000153 <groupId>edu.uci.ics.asterix</groupId>
154 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700155 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
159 <dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700160 <groupId>edu.uci.ics.asterix</groupId>
161 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700162 <version>0.8.7-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700163 <type>test-jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000164 <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> -->
169 <dependency>
170 <groupId>edu.uci.ics.asterix</groupId>
171 <artifactId>asterix-transactions</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700172 <version>0.8.7-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700173 <scope>compile</scope>
174 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000175 <dependency>
176 <groupId>org.apache.hadoop</groupId>
Ian18997ce2014-09-22 16:14:39 -0700177 <artifactId>hadoop-client</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000178 <type>jar</type>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.hadoop</groupId>
Ian18997ce2014-09-22 16:14:39 -0700182 <artifactId>hadoop-hdfs</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +0000183 <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>
JavierJia9d3c4a92014-11-20 13:09:58 -0800191 <scope>compile</scope>
vinayakb5ee049d2013-04-06 21:21:29 +0000192 </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>
ramangrover298be29bd2013-06-11 08:59:44 -0700200 <dependency>
201 <groupId>edu.uci.ics.asterix</groupId>
202 <artifactId>asterix-test-framework</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700203 <version>0.8.7-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700204 <scope>test</scope>
205 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000206 </dependencies>
207
208</project>