blob: 5c0a1a6ea8fff70efe129dff8c20ed311168c5e4 [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.com75850962013-02-07 12:02:03 +0000145 </dependency>
146 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000147 <groupId>edu.uci.ics.asterix</groupId>
148 <artifactId>asterix-aql</artifactId>
149 <version>0.0.4-SNAPSHOT</version>
150 <type>jar</type>
151 <scope>compile</scope>
152 </dependency>
153 <dependency>
154 <groupId>edu.uci.ics.asterix</groupId>
155 <artifactId>asterix-om</artifactId>
156 <version>0.0.4-SNAPSHOT</version>
157 <type>jar</type>
158 <scope>compile</scope>
159 </dependency>
160 <dependency>
161 <groupId>edu.uci.ics.asterix</groupId>
162 <artifactId>asterix-metadata</artifactId>
163 <version>0.0.4-SNAPSHOT</version>
164 <type>jar</type>
165 <scope>compile</scope>
166 </dependency>
167 <dependency>
168 <groupId>edu.uci.ics.asterix</groupId>
169 <artifactId>asterix-tools</artifactId>
170 <version>0.0.4-SNAPSHOT</version>
171 <type>jar</type>
172 <scope>compile</scope>
173 </dependency>
174 <dependency>
ramangrover2918bfcfe2012-04-30 18:17:21 +0000175 <groupId>edu.uci.ics.asterix</groupId>
176 <artifactId>asterix-common</artifactId>
177 <version>0.0.4-SNAPSHOT</version>
178 <type>jar</type>
179 <scope>compile</scope>
180 </dependency>
181 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000182 <groupId>com.kenai.nbpwr</groupId>
183 <artifactId>org-apache-commons-io</artifactId>
184 <version>1.3.1-201002241208</version>
185 <scope>test</scope>
186 </dependency>
buyingyi8f0fa332012-04-25 21:45:12 +0000187 <dependency>
188 <groupId>org.apache.hadoop</groupId>
189 <artifactId>hadoop-core</artifactId>
190 <version>0.20.2</version>
191 <type>jar</type>
buyingyi8f0fa332012-04-25 21:45:12 +0000192 </dependency>
193 <dependency>
194 <groupId>org.apache.hadoop</groupId>
195 <artifactId>hadoop-test</artifactId>
196 <version>0.20.2</version>
197 <type>jar</type>
198 <scope>test</scope>
199 </dependency>
200 <dependency>
201 <groupId>xerces</groupId>
202 <artifactId>xercesImpl</artifactId>
203 <version>2.9.1</version>
204 <type>jar</type>
205 <scope>test</scope>
206 </dependency>
207 <dependency>
208 <groupId>xalan</groupId>
209 <artifactId>xalan</artifactId>
210 <version>2.7.1</version>
211 <type>jar</type>
212 <scope>test</scope>
213 </dependency>
khfaraaz82@gmail.comd02d00f2012-09-26 02:08:33 +0000214 <dependency>
215 <groupId>net.sourceforge.cobertura</groupId>
216 <artifactId>cobertura</artifactId>
217 <version>1.9.4</version>
218 </dependency>
vinayakb93b76682012-10-06 03:38:51 +0000219 <dependency>
220 <groupId>edu.uci.ics.asterix</groupId>
221 <artifactId>asterix-test-framework</artifactId>
222 <version>0.0.4-SNAPSHOT</version>
223 <scope>test</scope>
224 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000225 </dependencies>
226
227</project>