blob: 9f408fcee239e8af6abaf48030039a26431cb488 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkar726f3922013-04-25 14:32:21 -070020 <version>0.0.6-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000022 <artifactId>asterix-app</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000023
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
29 <version>2.0.2</version>
30 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000031 <source>1.7</source>
32 <target>1.7</target>
33 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000034 </configuration>
35 </plugin>
36 <plugin>
37 <groupId>org.codehaus.mojo</groupId>
38 <artifactId>appassembler-maven-plugin</artifactId>
39 <version>1.0</version>
40 <executions>
41 <execution>
42 <configuration>
43 <programs>
44 <program>
45 <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass>
46 <name>asterix-web</name>
47 </program>
48 <program>
49 <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass>
50 <name>asterix-cmd</name>
51 </program>
vinayakbdfc7e992012-03-14 09:16:17 +000052 <program>
53 <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass>
54 <name>asterix-cli</name>
55 </program>
vinayakb38b7ca42012-03-05 05:44:15 +000056 </programs>
57 <repositoryLayout>flat</repositoryLayout>
58 <repositoryName>lib</repositoryName>
59 </configuration>
60 <phase>package</phase>
61 <goals>
62 <goal>assemble</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 <plugin>
68 <artifactId>maven-assembly-plugin</artifactId>
69 <version>2.2-beta-5</version>
70 <executions>
71 <execution>
72 <configuration>
73 <descriptors>
74 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
75 </descriptors>
76 </configuration>
77 <phase>package</phase>
78 <goals>
79 <goal>attached</goal>
80 </goals>
81 </execution>
82 </executions>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-surefire-plugin</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +000087 <version>2.8</version>
vinayakb38b7ca42012-03-05 05:44:15 +000088 <configuration>
salsubaiee3a332992013-06-05 21:06:14 -070089 <skipTests>true</skipTests>
vinayakb5ee049d2013-04-06 21:21:29 +000090 <!-- doesn't work from m2eclipse, currently <additionalClasspathElements>
91 <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement>
92 </additionalClasspathElements> -->
vinayakb38b7ca42012-03-05 05:44:15 +000093 <forkMode>pertest</forkMode>
vinayakb5ee049d2013-04-06 21:21:29 +000094 <argLine>-enableassertions -Xmx${test.heap.size}m
95 -Dfile.encoding=UTF-8
96 -Djava.util.logging.config.file=src/test/resources/logging.properties
97 -Xdebug
98 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
vinayakb38b7ca42012-03-05 05:44:15 +000099 <includes>
100 <include>**/*TestSuite.java</include>
101 <include>**/*Test.java</include>
102 </includes>
103 </configuration>
104 </plugin>
105 </plugins>
106 </build>
107
108 <dependencies>
109 <dependency>
110 <groupId>edu.uci.ics.asterix</groupId>
111 <artifactId>asterix-algebra</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -0700112 <version>0.0.6-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000113 <scope>compile</scope>
114 </dependency>
115 <dependency>
116 <groupId>javax.servlet</groupId>
117 <artifactId>servlet-api</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000118 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +0000119 </dependency>
120 <dependency>
121 <groupId>org.eclipse.jetty</groupId>
122 <artifactId>jetty-server</artifactId>
123 <version>8.0.0.M2</version>
124 <type>jar</type>
125 <scope>compile</scope>
126 </dependency>
127 <dependency>
128 <groupId>org.eclipse.jetty</groupId>
129 <artifactId>jetty-servlet</artifactId>
130 <version>8.0.0.M2</version>
131 <type>jar</type>
132 <scope>compile</scope>
133 </dependency>
134 <dependency>
135 <groupId>junit</groupId>
136 <artifactId>junit</artifactId>
137 <version>4.8.1</version>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>edu.uci.ics.hyracks</groupId>
142 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000143 </dependency>
144 <dependency>
145 <groupId>edu.uci.ics.hyracks</groupId>
146 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000147 </dependency>
148 <dependency>
149 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000150 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000151 </dependency>
152 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000153 <groupId>edu.uci.ics.hyracks</groupId>
154 <artifactId>hyracks-client</artifactId>
155 </dependency>
156 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000157 <groupId>edu.uci.ics.asterix</groupId>
158 <artifactId>asterix-aql</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -0700159 <version>0.0.6-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000160 <type>jar</type>
161 <scope>compile</scope>
162 </dependency>
163 <dependency>
164 <groupId>edu.uci.ics.asterix</groupId>
165 <artifactId>asterix-om</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -0700166 <version>0.0.6-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000167 <type>jar</type>
168 <scope>compile</scope>
169 </dependency>
170 <dependency>
171 <groupId>edu.uci.ics.asterix</groupId>
172 <artifactId>asterix-metadata</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -0700173 <version>0.0.6-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000174 <type>jar</type>
175 <scope>compile</scope>
176 </dependency>
177 <dependency>
178 <groupId>edu.uci.ics.asterix</groupId>
179 <artifactId>asterix-tools</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -0700180 <version>0.0.6-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000181 <type>jar</type>
182 <scope>compile</scope>
183 </dependency>
184 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000185 <groupId>edu.uci.ics.asterix</groupId>
186 <artifactId>asterix-common</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -0700187 <version>0.0.6-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000188 <type>jar</type>
189 <scope>compile</scope>
190 </dependency>
ramangrover29865c7062013-04-30 09:07:57 -0700191 <dependency>
192 <groupId>edu.uci.ics.asterix</groupId>
193 <artifactId>asterix-common</artifactId>
194 <version>0.0.6-SNAPSHOT</version>
195 <type>test-jar</type>
196 <scope>test</scope>
197 </dependency>
ramangrover2918e31382013-05-08 17:47:33 -0700198 <dependency>
199 <groupId>edu.uci.ics.asterix</groupId>
200 <artifactId>asterix-transactions</artifactId>
201 <version>0.0.6-SNAPSHOT</version>
202 <scope>compile</scope>
203 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000204 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000205 <groupId>org.apache.hadoop</groupId>
206 <artifactId>hadoop-core</artifactId>
207 <version>0.20.2</version>
208 <type>jar</type>
209 </dependency>
210 <dependency>
211 <groupId>org.apache.hadoop</groupId>
212 <artifactId>hadoop-test</artifactId>
213 <version>0.20.2</version>
214 <type>jar</type>
215 <scope>test</scope>
216 </dependency>
217 <dependency>
218 <groupId>xerces</groupId>
219 <artifactId>xercesImpl</artifactId>
220 <version>2.9.1</version>
221 <type>jar</type>
222 <scope>test</scope>
223 </dependency>
224 <dependency>
225 <groupId>xalan</groupId>
226 <artifactId>xalan</artifactId>
227 <version>2.7.1</version>
228 <type>jar</type>
229 <scope>test</scope>
230 </dependency>
231 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000232 <groupId>edu.uci.ics.asterix</groupId>
233 <artifactId>asterix-test-framework</artifactId>
Vinayak Borkar726f3922013-04-25 14:32:21 -0700234 <version>0.0.6-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000235 <scope>test</scope>
236 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000237 </dependencies>
238
239</project>