blob: f4c57ce4c4750c2a739e51aa72007b4c49d179bd [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>
15 <version>0.8.4-SNAPSHOT</version>
16 </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>
24 <version>2.0.2</version>
25 <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>
103 <groupId>junit</groupId>
104 <artifactId>junit</artifactId>
105 <version>4.8.1</version>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>edu.uci.ics.hyracks</groupId>
110 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000111 </dependency>
112 <dependency>
113 <groupId>edu.uci.ics.hyracks</groupId>
114 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000115 </dependency>
116 <dependency>
117 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000118 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000119 </dependency>
120 <dependency>
Raman Grover68860c92013-04-19 13:30:27 -0700121 <groupId>edu.uci.ics.hyracks</groupId>
122 <artifactId>hyracks-client</artifactId>
123 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000124 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000125 <groupId>edu.uci.ics.asterix</groupId>
ramangrover298be29bd2013-06-11 08:59:44 -0700126 <artifactId>asterix-algebra</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800127 <version>0.8.4-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700128 <scope>compile</scope>
129 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000130 <dependency>
131 <groupId>edu.uci.ics.asterix</groupId>
132 <artifactId>asterix-aql</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800133 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000134 <type>jar</type>
135 <scope>compile</scope>
136 </dependency>
137 <dependency>
138 <groupId>edu.uci.ics.asterix</groupId>
139 <artifactId>asterix-om</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800140 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000141 <type>jar</type>
142 <scope>compile</scope>
143 </dependency>
144 <dependency>
145 <groupId>edu.uci.ics.asterix</groupId>
146 <artifactId>asterix-metadata</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800147 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000148 <type>jar</type>
149 <scope>compile</scope>
150 </dependency>
151 <dependency>
152 <groupId>edu.uci.ics.asterix</groupId>
153 <artifactId>asterix-tools</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800154 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000155 <type>jar</type>
156 <scope>compile</scope>
157 </dependency>
158 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000159 <groupId>edu.uci.ics.asterix</groupId>
160 <artifactId>asterix-common</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800161 <version>0.8.4-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000162 <type>jar</type>
163 <scope>compile</scope>
164 </dependency>
165 <dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700166 <groupId>edu.uci.ics.asterix</groupId>
167 <artifactId>asterix-common</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800168 <version>0.8.4-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700169 <type>test-jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000170 <scope>test</scope>
171 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700172 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
173 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
174 <scope>test</scope> </dependency> -->
175 <dependency>
176 <groupId>edu.uci.ics.asterix</groupId>
177 <artifactId>asterix-transactions</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800178 <version>0.8.4-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700179 <scope>compile</scope>
180 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000181 <dependency>
182 <groupId>org.apache.hadoop</groupId>
183 <artifactId>hadoop-core</artifactId>
184 <version>0.20.2</version>
185 <type>jar</type>
186 </dependency>
187 <dependency>
188 <groupId>org.apache.hadoop</groupId>
189 <artifactId>hadoop-test</artifactId>
190 <version>0.20.2</version>
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>test</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>
ramangrover298be29bd2013-06-11 08:59:44 -0700208 <dependency>
209 <groupId>edu.uci.ics.asterix</groupId>
210 <artifactId>asterix-test-framework</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800211 <version>0.8.4-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700212 <scope>test</scope>
213 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000214 </dependencies>
215
216</project>