blob: ac63075890578d383d5e11fee63ad12db2140f47 [file] [log] [blame]
buyingyi8f0fa332012-04-25 21:45:12 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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 +00003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>asterix</artifactId>
6 <groupId>edu.uci.ics.asterix</groupId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
9 <groupId>edu.uci.ics.asterix</groupId>
10 <artifactId>asterix-app</artifactId>
11 <version>0.0.4-SNAPSHOT</version>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.0.2</version>
19 <configuration>
zheilbron5e741de2013-02-16 21:34:39 +000020 <source>1.7</source>
21 <target>1.7</target>
buyingyi8a61a182013-03-03 08:41:25 +000022 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000023 </configuration>
24 </plugin>
25 <plugin>
26 <groupId>org.codehaus.mojo</groupId>
27 <artifactId>appassembler-maven-plugin</artifactId>
28 <version>1.0</version>
29 <executions>
30 <execution>
31 <configuration>
32 <programs>
33 <program>
34 <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass>
35 <name>asterix-web</name>
36 </program>
37 <program>
38 <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass>
39 <name>asterix-cmd</name>
40 </program>
vinayakbdfc7e992012-03-14 09:16:17 +000041 <program>
42 <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass>
43 <name>asterix-cli</name>
44 </program>
vinayakb38b7ca42012-03-05 05:44:15 +000045 </programs>
46 <repositoryLayout>flat</repositoryLayout>
47 <repositoryName>lib</repositoryName>
48 </configuration>
49 <phase>package</phase>
50 <goals>
51 <goal>assemble</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56 <plugin>
57 <artifactId>maven-assembly-plugin</artifactId>
58 <version>2.2-beta-5</version>
59 <executions>
60 <execution>
61 <configuration>
62 <descriptors>
63 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
64 </descriptors>
65 </configuration>
66 <phase>package</phase>
67 <goals>
68 <goal>attached</goal>
69 </goals>
70 </execution>
71 </executions>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-surefire-plugin</artifactId>
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +000076 <version>2.8</version>
vinayakb38b7ca42012-03-05 05:44:15 +000077 <configuration>
buyingyi8f0fa332012-04-25 21:45:12 +000078 <!-- doesn't work from m2eclipse, currently <additionalClasspathElements>
79 <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement>
80 </additionalClasspathElements> -->
vinayakb38b7ca42012-03-05 05:44:15 +000081 <forkMode>pertest</forkMode>
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +000082 <argLine>-enableassertions -Xmx${test.heap.size}m
buyingyi8f0fa332012-04-25 21:45:12 +000083 -Dfile.encoding=UTF-8
vinayakb63009ca2012-03-23 06:50:40 +000084 -Djava.util.logging.config.file=src/test/resources/logging.properties
buyingyi8f0fa332012-04-25 21:45:12 +000085 -Xdebug
86 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
vinayakb38b7ca42012-03-05 05:44:15 +000087 <includes>
88 <include>**/*TestSuite.java</include>
89 <include>**/*Test.java</include>
90 </includes>
91 </configuration>
92 </plugin>
93 </plugins>
94 </build>
95
96 <dependencies>
97 <dependency>
98 <groupId>edu.uci.ics.asterix</groupId>
99 <artifactId>asterix-algebra</artifactId>
100 <version>0.0.4-SNAPSHOT</version>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>javax.servlet</groupId>
105 <artifactId>servlet-api</artifactId>
106 <version>2.5</version>
107 <type>jar</type>
108 <scope>compile</scope>
109 </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>
vinayakbba4abf62013-02-01 01:19:43 +0000140 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000141 </dependency>
142 <dependency>
madhusudancs@gmail.com75850962013-02-07 12:02:03 +0000143 <groupId>edu.uci.ics.hyracks</groupId>
144 <artifactId>hyracks-client</artifactId>
madhusudancs@gmail.comcf2840a2013-02-07 23:14:03 +0000145 <version>0.2.3-SNAPSHOT</version>
madhusudancs@gmail.com75850962013-02-07 12:02:03 +0000146 </dependency>
147 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000148 <groupId>edu.uci.ics.asterix</groupId>
149 <artifactId>asterix-aql</artifactId>
150 <version>0.0.4-SNAPSHOT</version>
151 <type>jar</type>
152 <scope>compile</scope>
153 </dependency>
154 <dependency>
155 <groupId>edu.uci.ics.asterix</groupId>
156 <artifactId>asterix-om</artifactId>
157 <version>0.0.4-SNAPSHOT</version>
158 <type>jar</type>
159 <scope>compile</scope>
160 </dependency>
161 <dependency>
162 <groupId>edu.uci.ics.asterix</groupId>
163 <artifactId>asterix-metadata</artifactId>
164 <version>0.0.4-SNAPSHOT</version>
165 <type>jar</type>
166 <scope>compile</scope>
167 </dependency>
168 <dependency>
169 <groupId>edu.uci.ics.asterix</groupId>
170 <artifactId>asterix-tools</artifactId>
171 <version>0.0.4-SNAPSHOT</version>
172 <type>jar</type>
173 <scope>compile</scope>
174 </dependency>
175 <dependency>
ramangrover2918bfcfe2012-04-30 18:17:21 +0000176 <groupId>edu.uci.ics.asterix</groupId>
177 <artifactId>asterix-common</artifactId>
178 <version>0.0.4-SNAPSHOT</version>
179 <type>jar</type>
180 <scope>compile</scope>
181 </dependency>
182 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000183 <groupId>com.kenai.nbpwr</groupId>
184 <artifactId>org-apache-commons-io</artifactId>
185 <version>1.3.1-201002241208</version>
186 <scope>test</scope>
187 </dependency>
buyingyi8f0fa332012-04-25 21:45:12 +0000188 <dependency>
189 <groupId>org.apache.hadoop</groupId>
190 <artifactId>hadoop-core</artifactId>
191 <version>0.20.2</version>
192 <type>jar</type>
buyingyi8f0fa332012-04-25 21:45:12 +0000193 </dependency>
194 <dependency>
195 <groupId>org.apache.hadoop</groupId>
196 <artifactId>hadoop-test</artifactId>
197 <version>0.20.2</version>
198 <type>jar</type>
199 <scope>test</scope>
200 </dependency>
201 <dependency>
202 <groupId>xerces</groupId>
203 <artifactId>xercesImpl</artifactId>
204 <version>2.9.1</version>
205 <type>jar</type>
206 <scope>test</scope>
207 </dependency>
208 <dependency>
209 <groupId>xalan</groupId>
210 <artifactId>xalan</artifactId>
211 <version>2.7.1</version>
212 <type>jar</type>
213 <scope>test</scope>
214 </dependency>
khfaraaz82@gmail.comd02d00f2012-09-26 02:08:33 +0000215 <dependency>
216 <groupId>net.sourceforge.cobertura</groupId>
217 <artifactId>cobertura</artifactId>
218 <version>1.9.4</version>
219 </dependency>
vinayakb93b76682012-10-06 03:38:51 +0000220 <dependency>
221 <groupId>edu.uci.ics.asterix</groupId>
222 <artifactId>asterix-test-framework</artifactId>
223 <version>0.0.4-SNAPSHOT</version>
224 <scope>test</scope>
225 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000226 </dependencies>
227
228</project>