blob: 30e7f55a76242e079718dd05840508d2d5f533e7 [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>
ramangrover293f026c52013-12-04 11:24:34 +053089 <skipTests>true</skipTests>
Raman Grover68860c92013-04-19 13:30:27 -070090 <argLine>-enableassertions -Xmx${test.heap.size}m
vinayakb5ee049d2013-04-06 21:21:29 +000091 -Dfile.encoding=UTF-8
92 -Djava.util.logging.config.file=src/test/resources/logging.properties
93 -Xdebug
94 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
vinayakb38b7ca42012-03-05 05:44:15 +000095 <includes>
96 <include>**/*TestSuite.java</include>
97 <include>**/*Test.java</include>
98 </includes>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
103
104 <dependencies>
105 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000106 <groupId>javax.servlet</groupId>
107 <artifactId>servlet-api</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000108 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000109 </dependency>
110 <dependency>
111 <groupId>org.eclipse.jetty</groupId>
112 <artifactId>jetty-server</artifactId>
113 <version>8.0.0.M2</version>
114 <type>jar</type>
115 <scope>compile</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.eclipse.jetty</groupId>
119 <artifactId>jetty-servlet</artifactId>
120 <version>8.0.0.M2</version>
121 <type>jar</type>
122 <scope>compile</scope>
123 </dependency>
124 <dependency>
125 <groupId>junit</groupId>
126 <artifactId>junit</artifactId>
127 <version>4.8.1</version>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>edu.uci.ics.hyracks</groupId>
132 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000133 </dependency>
134 <dependency>
135 <groupId>edu.uci.ics.hyracks</groupId>
136 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000137 </dependency>
138 <dependency>
139 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000140 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000141 </dependency>
142 <dependency>
Raman Grover68860c92013-04-19 13:30:27 -0700143 <groupId>edu.uci.ics.hyracks</groupId>
144 <artifactId>hyracks-client</artifactId>
145 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000146 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000147 <groupId>edu.uci.ics.asterix</groupId>
ramangrover298be29bd2013-06-11 08:59:44 -0700148 <artifactId>asterix-algebra</artifactId>
149 <version>0.8.1-SNAPSHOT</version>
150 <scope>compile</scope>
151 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000152 <dependency>
153 <groupId>edu.uci.ics.asterix</groupId>
154 <artifactId>asterix-aql</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700155 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
159 <dependency>
160 <groupId>edu.uci.ics.asterix</groupId>
161 <artifactId>asterix-om</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700162 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000163 <type>jar</type>
164 <scope>compile</scope>
165 </dependency>
166 <dependency>
167 <groupId>edu.uci.ics.asterix</groupId>
168 <artifactId>asterix-metadata</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700169 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000170 <type>jar</type>
171 <scope>compile</scope>
172 </dependency>
173 <dependency>
174 <groupId>edu.uci.ics.asterix</groupId>
175 <artifactId>asterix-tools</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700176 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000177 <type>jar</type>
178 <scope>compile</scope>
179 </dependency>
180 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000181 <groupId>edu.uci.ics.asterix</groupId>
182 <artifactId>asterix-common</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700183 <version>0.8.1-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000184 <type>jar</type>
185 <scope>compile</scope>
186 </dependency>
187 <dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700188 <groupId>edu.uci.ics.asterix</groupId>
189 <artifactId>asterix-common</artifactId>
190 <version>0.8.1-SNAPSHOT</version>
191 <type>test-jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000192 <scope>test</scope>
193 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700194 <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId>
195 <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version>
196 <scope>test</scope> </dependency> -->
197 <dependency>
198 <groupId>edu.uci.ics.asterix</groupId>
199 <artifactId>asterix-transactions</artifactId>
200 <version>0.8.1-SNAPSHOT</version>
201 <scope>compile</scope>
202 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000203 <dependency>
204 <groupId>org.apache.hadoop</groupId>
205 <artifactId>hadoop-core</artifactId>
206 <version>0.20.2</version>
207 <type>jar</type>
208 </dependency>
209 <dependency>
210 <groupId>org.apache.hadoop</groupId>
211 <artifactId>hadoop-test</artifactId>
212 <version>0.20.2</version>
213 <type>jar</type>
214 <scope>test</scope>
215 </dependency>
216 <dependency>
217 <groupId>xerces</groupId>
218 <artifactId>xercesImpl</artifactId>
219 <version>2.9.1</version>
220 <type>jar</type>
221 <scope>test</scope>
222 </dependency>
223 <dependency>
224 <groupId>xalan</groupId>
225 <artifactId>xalan</artifactId>
226 <version>2.7.1</version>
227 <type>jar</type>
228 <scope>test</scope>
229 </dependency>
ramangrover298be29bd2013-06-11 08:59:44 -0700230 <dependency>
231 <groupId>edu.uci.ics.asterix</groupId>
232 <artifactId>asterix-test-framework</artifactId>
233 <version>0.8.1-SNAPSHOT</version>
234 <scope>test</scope>
235 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000236 </dependencies>
237
238</project>