blob: 2f80c301228e7d98510330d18d6bfc5886b5a98b [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>
20 <source>1.6</source>
21 <target>1.6</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.codehaus.mojo</groupId>
26 <artifactId>appassembler-maven-plugin</artifactId>
27 <version>1.0</version>
28 <executions>
29 <execution>
30 <configuration>
31 <programs>
32 <program>
33 <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass>
34 <name>asterix-web</name>
35 </program>
36 <program>
37 <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass>
38 <name>asterix-cmd</name>
39 </program>
vinayakbdfc7e992012-03-14 09:16:17 +000040 <program>
41 <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass>
42 <name>asterix-cli</name>
43 </program>
vinayakb38b7ca42012-03-05 05:44:15 +000044 </programs>
45 <repositoryLayout>flat</repositoryLayout>
46 <repositoryName>lib</repositoryName>
47 </configuration>
48 <phase>package</phase>
49 <goals>
50 <goal>assemble</goal>
51 </goals>
52 </execution>
53 </executions>
54 </plugin>
55 <plugin>
56 <artifactId>maven-assembly-plugin</artifactId>
57 <version>2.2-beta-5</version>
58 <executions>
59 <execution>
60 <configuration>
61 <descriptors>
62 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
63 </descriptors>
64 </configuration>
65 <phase>package</phase>
66 <goals>
67 <goal>attached</goal>
68 </goals>
69 </execution>
70 </executions>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-surefire-plugin</artifactId>
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +000075 <version>2.8</version>
vinayakb38b7ca42012-03-05 05:44:15 +000076 <configuration>
buyingyi8f0fa332012-04-25 21:45:12 +000077 <!-- doesn't work from m2eclipse, currently <additionalClasspathElements>
78 <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement>
79 </additionalClasspathElements> -->
vinayakb38b7ca42012-03-05 05:44:15 +000080 <forkMode>pertest</forkMode>
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +000081 <argLine>-enableassertions -Xmx${test.heap.size}m
buyingyi8f0fa332012-04-25 21:45:12 +000082 -Dfile.encoding=UTF-8
vinayakb63009ca2012-03-23 06:50:40 +000083 -Djava.util.logging.config.file=src/test/resources/logging.properties
buyingyi8f0fa332012-04-25 21:45:12 +000084 -Xdebug
85 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
vinayakb38b7ca42012-03-05 05:44:15 +000086 <includes>
87 <include>**/*TestSuite.java</include>
88 <include>**/*Test.java</include>
89 </includes>
90 </configuration>
91 </plugin>
92 </plugins>
93 </build>
94
95 <dependencies>
96 <dependency>
97 <groupId>edu.uci.ics.asterix</groupId>
98 <artifactId>asterix-algebra</artifactId>
99 <version>0.0.4-SNAPSHOT</version>
100 <scope>compile</scope>
101 </dependency>
102 <dependency>
103 <groupId>javax.servlet</groupId>
104 <artifactId>servlet-api</artifactId>
105 <version>2.5</version>
106 <type>jar</type>
107 <scope>compile</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.eclipse.jetty</groupId>
111 <artifactId>jetty-server</artifactId>
112 <version>8.0.0.M2</version>
113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.eclipse.jetty</groupId>
118 <artifactId>jetty-servlet</artifactId>
119 <version>8.0.0.M2</version>
120 <type>jar</type>
121 <scope>compile</scope>
122 </dependency>
123 <dependency>
124 <groupId>junit</groupId>
125 <artifactId>junit</artifactId>
126 <version>4.8.1</version>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>edu.uci.ics.hyracks</groupId>
131 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000132 </dependency>
133 <dependency>
134 <groupId>edu.uci.ics.hyracks</groupId>
135 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000136 </dependency>
137 <dependency>
138 <groupId>edu.uci.ics.hyracks</groupId>
ramangrover2947868fa2013-02-08 23:58:59 +0000139 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000140 </dependency>
141 <dependency>
142 <groupId>edu.uci.ics.asterix</groupId>
143 <artifactId>asterix-aql</artifactId>
144 <version>0.0.4-SNAPSHOT</version>
145 <type>jar</type>
146 <scope>compile</scope>
147 </dependency>
148 <dependency>
149 <groupId>edu.uci.ics.asterix</groupId>
150 <artifactId>asterix-om</artifactId>
151 <version>0.0.4-SNAPSHOT</version>
152 <type>jar</type>
153 <scope>compile</scope>
154 </dependency>
155 <dependency>
156 <groupId>edu.uci.ics.asterix</groupId>
157 <artifactId>asterix-metadata</artifactId>
158 <version>0.0.4-SNAPSHOT</version>
159 <type>jar</type>
160 <scope>compile</scope>
161 </dependency>
162 <dependency>
163 <groupId>edu.uci.ics.asterix</groupId>
164 <artifactId>asterix-tools</artifactId>
165 <version>0.0.4-SNAPSHOT</version>
166 <type>jar</type>
167 <scope>compile</scope>
168 </dependency>
169 <dependency>
ramangrover2918bfcfe2012-04-30 18:17:21 +0000170 <groupId>edu.uci.ics.asterix</groupId>
171 <artifactId>asterix-common</artifactId>
172 <version>0.0.4-SNAPSHOT</version>
173 <type>jar</type>
174 <scope>compile</scope>
175 </dependency>
176 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000177 <groupId>com.kenai.nbpwr</groupId>
178 <artifactId>org-apache-commons-io</artifactId>
179 <version>1.3.1-201002241208</version>
180 <scope>test</scope>
181 </dependency>
buyingyi8f0fa332012-04-25 21:45:12 +0000182 <dependency>
183 <groupId>org.apache.hadoop</groupId>
184 <artifactId>hadoop-core</artifactId>
185 <version>0.20.2</version>
186 <type>jar</type>
buyingyi8f0fa332012-04-25 21:45:12 +0000187 </dependency>
188 <dependency>
189 <groupId>org.apache.hadoop</groupId>
190 <artifactId>hadoop-test</artifactId>
191 <version>0.20.2</version>
192 <type>jar</type>
193 <scope>test</scope>
194 </dependency>
195 <dependency>
196 <groupId>xerces</groupId>
197 <artifactId>xercesImpl</artifactId>
198 <version>2.9.1</version>
199 <type>jar</type>
200 <scope>test</scope>
201 </dependency>
202 <dependency>
203 <groupId>xalan</groupId>
204 <artifactId>xalan</artifactId>
205 <version>2.7.1</version>
206 <type>jar</type>
207 <scope>test</scope>
208 </dependency>
khfaraaz82@gmail.comd02d00f2012-09-26 02:08:33 +0000209 <dependency>
210 <groupId>net.sourceforge.cobertura</groupId>
211 <artifactId>cobertura</artifactId>
212 <version>1.9.4</version>
213 </dependency>
vinayakb93b76682012-10-06 03:38:51 +0000214 <dependency>
215 <groupId>edu.uci.ics.asterix</groupId>
216 <artifactId>asterix-test-framework</artifactId>
217 <version>0.0.4-SNAPSHOT</version>
218 <scope>test</scope>
219 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000220 </dependencies>
221
222</project>