blob: 6dbc5067145d4a35023e204bfe7a8bc68b21df5c [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">
vinayakb38b7ca42012-03-05 05:44:15 +000011 <modelVersion>4.0.0</modelVersion>
12 <parent>
13 <artifactId>asterix</artifactId>
14 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -080015 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000016 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000017 <artifactId>asterix-app</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000018
19 <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>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-surefire-plugin</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +000082 <version>2.8</version>
vinayakb38b7ca42012-03-05 05:44:15 +000083 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000084 <!-- doesn't work from m2eclipse, currently <additionalClasspathElements>
85 <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement>
86 </additionalClasspathElements> -->
vinayakb38b7ca42012-03-05 05:44:15 +000087 <forkMode>pertest</forkMode>
Raman Grover68860c92013-04-19 13:30:27 -070088 <argLine>-enableassertions -Xmx${test.heap.size}m
vinayakb5ee049d2013-04-06 21:21:29 +000089 -Dfile.encoding=UTF-8
90 -Djava.util.logging.config.file=src/test/resources/logging.properties
91 -Xdebug
92 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
vinayakb38b7ca42012-03-05 05:44:15 +000093 <includes>
94 <include>**/*TestSuite.java</include>
95 <include>**/*Test.java</include>
96 </includes>
97 </configuration>
98 </plugin>
99 </plugins>
100 </build>
101
102 <dependencies>
103 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000104 <groupId>javax.servlet</groupId>
105 <artifactId>servlet-api</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000106 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000107 </dependency>
108 <dependency>
109 <groupId>org.eclipse.jetty</groupId>
110 <artifactId>jetty-server</artifactId>
111 <version>8.0.0.M2</version>
112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.eclipse.jetty</groupId>
117 <artifactId>jetty-servlet</artifactId>
118 <version>8.0.0.M2</version>
119 <type>jar</type>
120 <scope>compile</scope>
121 </dependency>
122 <dependency>
123 <groupId>junit</groupId>
124 <artifactId>junit</artifactId>
125 <version>4.8.1</version>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>edu.uci.ics.hyracks</groupId>
130 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000131 </dependency>
132 <dependency>
133 <groupId>edu.uci.ics.hyracks</groupId>
134 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000135 </dependency>
136 <dependency>
137 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000138 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000139 </dependency>
140 <dependency>
Raman Grover68860c92013-04-19 13:30:27 -0700141 <groupId>edu.uci.ics.hyracks</groupId>
142 <artifactId>hyracks-client</artifactId>
143 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000144 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000145 <groupId>edu.uci.ics.asterix</groupId>
ramangrover298be29bd2013-06-11 08:59:44 -0700146 <artifactId>asterix-algebra</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800147 <version>0.8.4-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700148 <scope>compile</scope>
149 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000150 <dependency>
151 <groupId>edu.uci.ics.asterix</groupId>
152 <artifactId>asterix-aql</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800153 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000154 <type>jar</type>
155 <scope>compile</scope>
156 </dependency>
157 <dependency>
158 <groupId>edu.uci.ics.asterix</groupId>
159 <artifactId>asterix-om</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800160 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000161 <type>jar</type>
162 <scope>compile</scope>
163 </dependency>
164 <dependency>
165 <groupId>edu.uci.ics.asterix</groupId>
166 <artifactId>asterix-metadata</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800167 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000168 <type>jar</type>
169 <scope>compile</scope>
170 </dependency>
171 <dependency>
172 <groupId>edu.uci.ics.asterix</groupId>
173 <artifactId>asterix-tools</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800174 <version>0.8.4-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000175 <type>jar</type>
176 <scope>compile</scope>
177 </dependency>
178 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000179 <groupId>edu.uci.ics.asterix</groupId>
180 <artifactId>asterix-common</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800181 <version>0.8.4-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000182 <type>jar</type>
183 <scope>compile</scope>
184 </dependency>
185 <dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700186 <groupId>edu.uci.ics.asterix</groupId>
187 <artifactId>asterix-common</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800188 <version>0.8.4-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700189 <type>test-jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000190 <scope>test</scope>
191 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700192 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
193 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
194 <scope>test</scope> </dependency> -->
195 <dependency>
196 <groupId>edu.uci.ics.asterix</groupId>
197 <artifactId>asterix-transactions</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800198 <version>0.8.4-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700199 <scope>compile</scope>
200 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000201 <dependency>
202 <groupId>org.apache.hadoop</groupId>
203 <artifactId>hadoop-core</artifactId>
204 <version>0.20.2</version>
205 <type>jar</type>
206 </dependency>
207 <dependency>
208 <groupId>org.apache.hadoop</groupId>
209 <artifactId>hadoop-test</artifactId>
210 <version>0.20.2</version>
211 <type>jar</type>
212 <scope>test</scope>
213 </dependency>
214 <dependency>
215 <groupId>xerces</groupId>
216 <artifactId>xercesImpl</artifactId>
217 <version>2.9.1</version>
218 <type>jar</type>
219 <scope>test</scope>
220 </dependency>
221 <dependency>
222 <groupId>xalan</groupId>
223 <artifactId>xalan</artifactId>
224 <version>2.7.1</version>
225 <type>jar</type>
226 <scope>test</scope>
227 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700228 <dependency>
229 <groupId>edu.uci.ics.asterix</groupId>
230 <artifactId>asterix-test-framework</artifactId>
Vinayak Borkar9e00d472013-12-22 12:45:40 -0800231 <version>0.8.4-SNAPSHOT</version>
ramangrover298be29bd2013-06-11 08:59:44 -0700232 <scope>test</scope>
233 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000234 </dependencies>
235
236</project>