blob: 947617833191d4880fae0578ef66b066b5fbf597 [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>
143 <groupId>edu.uci.ics.asterix</groupId>
144 <artifactId>asterix-aql</artifactId>
145 <version>0.0.4-SNAPSHOT</version>
146 <type>jar</type>
147 <scope>compile</scope>
148 </dependency>
149 <dependency>
150 <groupId>edu.uci.ics.asterix</groupId>
151 <artifactId>asterix-om</artifactId>
152 <version>0.0.4-SNAPSHOT</version>
153 <type>jar</type>
154 <scope>compile</scope>
155 </dependency>
156 <dependency>
157 <groupId>edu.uci.ics.asterix</groupId>
158 <artifactId>asterix-metadata</artifactId>
159 <version>0.0.4-SNAPSHOT</version>
160 <type>jar</type>
161 <scope>compile</scope>
162 </dependency>
163 <dependency>
164 <groupId>edu.uci.ics.asterix</groupId>
165 <artifactId>asterix-tools</artifactId>
166 <version>0.0.4-SNAPSHOT</version>
167 <type>jar</type>
168 <scope>compile</scope>
169 </dependency>
170 <dependency>
ramangrover2918bfcfe2012-04-30 18:17:21 +0000171 <groupId>edu.uci.ics.asterix</groupId>
172 <artifactId>asterix-common</artifactId>
173 <version>0.0.4-SNAPSHOT</version>
174 <type>jar</type>
175 <scope>compile</scope>
176 </dependency>
177 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000178 <groupId>com.kenai.nbpwr</groupId>
179 <artifactId>org-apache-commons-io</artifactId>
180 <version>1.3.1-201002241208</version>
181 <scope>test</scope>
182 </dependency>
buyingyi8f0fa332012-04-25 21:45:12 +0000183 <dependency>
184 <groupId>org.apache.hadoop</groupId>
185 <artifactId>hadoop-core</artifactId>
186 <version>0.20.2</version>
187 <type>jar</type>
buyingyi8f0fa332012-04-25 21:45:12 +0000188 </dependency>
189 <dependency>
190 <groupId>org.apache.hadoop</groupId>
191 <artifactId>hadoop-test</artifactId>
192 <version>0.20.2</version>
193 <type>jar</type>
194 <scope>test</scope>
195 </dependency>
196 <dependency>
197 <groupId>xerces</groupId>
198 <artifactId>xercesImpl</artifactId>
199 <version>2.9.1</version>
200 <type>jar</type>
201 <scope>test</scope>
202 </dependency>
203 <dependency>
204 <groupId>xalan</groupId>
205 <artifactId>xalan</artifactId>
206 <version>2.7.1</version>
207 <type>jar</type>
208 <scope>test</scope>
209 </dependency>
khfaraaz82@gmail.comd02d00f2012-09-26 02:08:33 +0000210 <dependency>
211 <groupId>net.sourceforge.cobertura</groupId>
212 <artifactId>cobertura</artifactId>
213 <version>1.9.4</version>
214 </dependency>
vinayakb93b76682012-10-06 03:38:51 +0000215 <dependency>
216 <groupId>edu.uci.ics.asterix</groupId>
217 <artifactId>asterix-test-framework</artifactId>
218 <version>0.0.4-SNAPSHOT</version>
219 <scope>test</scope>
220 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000221 </dependencies>
222
223</project>