blob: 06d289e092806453765d272c0682b6c08e83b0e6 [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. ! -->
Raman Grover68860c92013-04-19 13:30:27 -070010<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11 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 +000012 <modelVersion>4.0.0</modelVersion>
13 <parent>
14 <artifactId>asterix</artifactId>
15 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070016 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000017 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000018 <artifactId>asterix-app</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000019
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-compiler-plugin</artifactId>
25 <version>2.0.2</version>
26 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000027 <source>1.7</source>
28 <target>1.7</target>
29 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000030 </configuration>
31 </plugin>
32 <plugin>
33 <groupId>org.codehaus.mojo</groupId>
34 <artifactId>appassembler-maven-plugin</artifactId>
35 <version>1.0</version>
36 <executions>
37 <execution>
38 <configuration>
39 <programs>
40 <program>
41 <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass>
42 <name>asterix-web</name>
43 </program>
44 <program>
45 <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass>
46 <name>asterix-cmd</name>
47 </program>
vinayakbdfc7e992012-03-14 09:16:17 +000048 <program>
49 <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass>
50 <name>asterix-cli</name>
51 </program>
vinayakb38b7ca42012-03-05 05:44:15 +000052 </programs>
53 <repositoryLayout>flat</repositoryLayout>
54 <repositoryName>lib</repositoryName>
55 </configuration>
56 <phase>package</phase>
57 <goals>
58 <goal>assemble</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <artifactId>maven-assembly-plugin</artifactId>
65 <version>2.2-beta-5</version>
66 <executions>
67 <execution>
68 <configuration>
69 <descriptors>
70 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
71 </descriptors>
72 </configuration>
73 <phase>package</phase>
74 <goals>
75 <goal>attached</goal>
76 </goals>
77 </execution>
78 </executions>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-surefire-plugin</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +000083 <version>2.8</version>
vinayakb38b7ca42012-03-05 05:44:15 +000084 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000085 <!-- doesn't work from m2eclipse, currently <additionalClasspathElements>
86 <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement>
87 </additionalClasspathElements> -->
vinayakb38b7ca42012-03-05 05:44:15 +000088 <forkMode>pertest</forkMode>
Raman Grover68860c92013-04-19 13:30:27 -070089 <argLine>-enableassertions -Xmx${test.heap.size}m
vinayakb5ee049d2013-04-06 21:21:29 +000090 -Dfile.encoding=UTF-8
91 -Djava.util.logging.config.file=src/test/resources/logging.properties
92 -Xdebug
93 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
vinayakb38b7ca42012-03-05 05:44:15 +000094 <includes>
95 <include>**/*TestSuite.java</include>
96 <include>**/*Test.java</include>
97 </includes>
98 </configuration>
99 </plugin>
100 </plugins>
101 </build>
102
103 <dependencies>
104 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000105 <groupId>javax.servlet</groupId>
106 <artifactId>servlet-api</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000107 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000108 </dependency>
109 <dependency>
110 <groupId>org.eclipse.jetty</groupId>
111 <artifactId>jetty-server</artifactId>
112 <version>8.0.0.M2</version>
113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.eclipse.jetty</groupId>
118 <artifactId>jetty-servlet</artifactId>
119 <version>8.0.0.M2</version>
120 <type>jar</type>
121 <scope>compile</scope>
122 </dependency>
123 <dependency>
124 <groupId>junit</groupId>
125 <artifactId>junit</artifactId>
126 <version>4.8.1</version>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>edu.uci.ics.hyracks</groupId>
131 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000132 </dependency>
133 <dependency>
134 <groupId>edu.uci.ics.hyracks</groupId>
135 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000136 </dependency>
137 <dependency>
138 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000139 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000140 </dependency>
141 <dependency>
Raman Grover68860c92013-04-19 13:30:27 -0700142 <groupId>edu.uci.ics.hyracks</groupId>
143 <artifactId>hyracks-client</artifactId>
144 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000145 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000146 <groupId>edu.uci.ics.asterix</groupId>
ramangrover298be29bd2013-06-11 08:59:44 -0700147 <artifactId>asterix-algebra</artifactId>
148 <version>0.8.1-SNAPSHOT</version>
149 <scope>compile</scope>
150 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000151 <dependency>
152 <groupId>edu.uci.ics.asterix</groupId>
153 <artifactId>asterix-aql</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700154 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000155 <type>jar</type>
156 <scope>compile</scope>
157 </dependency>
158 <dependency>
159 <groupId>edu.uci.ics.asterix</groupId>
160 <artifactId>asterix-om</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700161 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000162 <type>jar</type>
163 <scope>compile</scope>
164 </dependency>
165 <dependency>
166 <groupId>edu.uci.ics.asterix</groupId>
167 <artifactId>asterix-metadata</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700168 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000169 <type>jar</type>
170 <scope>compile</scope>
171 </dependency>
172 <dependency>
173 <groupId>edu.uci.ics.asterix</groupId>
174 <artifactId>asterix-tools</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700175 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000176 <type>jar</type>
177 <scope>compile</scope>
178 </dependency>
179 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000180 <groupId>edu.uci.ics.asterix</groupId>
181 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700182 <version>0.8.1-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000183 <type>jar</type>
184 <scope>compile</scope>
185 </dependency>
186 <dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700187 <groupId>edu.uci.ics.asterix</groupId>
188 <artifactId>asterix-common</artifactId>
189 <version>0.8.1-SNAPSHOT</version>
190 <type>test-jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000191 <scope>test</scope>
192 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700193 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
194 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
195 <scope>test</scope> </dependency> -->
196 <dependency>
197 <groupId>edu.uci.ics.asterix</groupId>
198 <artifactId>asterix-transactions</artifactId>
199 <version>0.8.1-SNAPSHOT</version>
200 <scope>compile</scope>
201 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000202 <dependency>
203 <groupId>org.apache.hadoop</groupId>
204 <artifactId>hadoop-core</artifactId>
205 <version>0.20.2</version>
206 <type>jar</type>
207 </dependency>
208 <dependency>
209 <groupId>org.apache.hadoop</groupId>
210 <artifactId>hadoop-test</artifactId>
211 <version>0.20.2</version>
212 <type>jar</type>
213 <scope>test</scope>
214 </dependency>
215 <dependency>
216 <groupId>xerces</groupId>
217 <artifactId>xercesImpl</artifactId>
218 <version>2.9.1</version>
219 <type>jar</type>
220 <scope>test</scope>
221 </dependency>
222 <dependency>
223 <groupId>xalan</groupId>
224 <artifactId>xalan</artifactId>
225 <version>2.7.1</version>
226 <type>jar</type>
227 <scope>test</scope>
228 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700229 <dependency>
230 <groupId>edu.uci.ics.asterix</groupId>
231 <artifactId>asterix-test-framework</artifactId>
232 <version>0.8.1-SNAPSHOT</version>
233 <scope>test</scope>
234 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000235 </dependencies>
236
237</project>