blob: e55231f5e485ce340b0297ad897a4bfa2ffc99a1 [file] [log] [blame]
vinayakb5ee049d2013-04-06 21:21:29 +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>
vinayakb38b7ca42012-03-05 05:44:15 +00009 <artifactId>asterix-app</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000010
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 <version>2.0.2</version>
17 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000018 <source>1.7</source>
19 <target>1.7</target>
20 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.codehaus.mojo</groupId>
25 <artifactId>appassembler-maven-plugin</artifactId>
26 <version>1.0</version>
27 <executions>
28 <execution>
29 <configuration>
30 <programs>
31 <program>
32 <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass>
33 <name>asterix-web</name>
34 </program>
35 <program>
36 <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass>
37 <name>asterix-cmd</name>
38 </program>
vinayakbdfc7e992012-03-14 09:16:17 +000039 <program>
40 <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass>
41 <name>asterix-cli</name>
42 </program>
vinayakb38b7ca42012-03-05 05:44:15 +000043 </programs>
44 <repositoryLayout>flat</repositoryLayout>
45 <repositoryName>lib</repositoryName>
46 </configuration>
47 <phase>package</phase>
48 <goals>
49 <goal>assemble</goal>
50 </goals>
51 </execution>
52 </executions>
53 </plugin>
54 <plugin>
55 <artifactId>maven-assembly-plugin</artifactId>
56 <version>2.2-beta-5</version>
57 <executions>
58 <execution>
59 <configuration>
60 <descriptors>
61 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
62 </descriptors>
63 </configuration>
64 <phase>package</phase>
65 <goals>
66 <goal>attached</goal>
67 </goals>
68 </execution>
69 </executions>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-surefire-plugin</artifactId>
vinayakb5ee049d2013-04-06 21:21:29 +000074 <version>2.8</version>
vinayakb38b7ca42012-03-05 05:44:15 +000075 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000076 <!-- doesn't work from m2eclipse, currently <additionalClasspathElements>
77 <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement>
78 </additionalClasspathElements> -->
vinayakb38b7ca42012-03-05 05:44:15 +000079 <forkMode>pertest</forkMode>
vinayakb5ee049d2013-04-06 21:21:29 +000080 <argLine>-enableassertions -Xmx${test.heap.size}m
81 -Dfile.encoding=UTF-8
82 -Djava.util.logging.config.file=src/test/resources/logging.properties
83 -Xdebug
84 -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine>
vinayakb38b7ca42012-03-05 05:44:15 +000085 <includes>
86 <include>**/*TestSuite.java</include>
87 <include>**/*Test.java</include>
88 </includes>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
93
94 <dependencies>
95 <dependency>
96 <groupId>edu.uci.ics.asterix</groupId>
97 <artifactId>asterix-algebra</artifactId>
98 <version>0.0.4-SNAPSHOT</version>
99 <scope>compile</scope>
100 </dependency>
101 <dependency>
102 <groupId>javax.servlet</groupId>
103 <artifactId>servlet-api</artifactId>
104 <version>2.5</version>
105 <type>jar</type>
106 <scope>compile</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.eclipse.jetty</groupId>
110 <artifactId>jetty-server</artifactId>
111 <version>8.0.0.M2</version>
112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.eclipse.jetty</groupId>
117 <artifactId>jetty-servlet</artifactId>
118 <version>8.0.0.M2</version>
119 <type>jar</type>
120 <scope>compile</scope>
121 </dependency>
122 <dependency>
123 <groupId>junit</groupId>
124 <artifactId>junit</artifactId>
125 <version>4.8.1</version>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>edu.uci.ics.hyracks</groupId>
130 <artifactId>hyracks-control-cc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000131 </dependency>
132 <dependency>
133 <groupId>edu.uci.ics.hyracks</groupId>
134 <artifactId>hyracks-control-nc</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000135 </dependency>
136 <dependency>
137 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000138 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000139 </dependency>
140 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000141 <groupId>edu.uci.ics.hyracks</groupId>
142 <artifactId>hyracks-client</artifactId>
143 </dependency>
144 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000145 <groupId>edu.uci.ics.asterix</groupId>
146 <artifactId>asterix-aql</artifactId>
147 <version>0.0.4-SNAPSHOT</version>
148 <type>jar</type>
149 <scope>compile</scope>
150 </dependency>
151 <dependency>
152 <groupId>edu.uci.ics.asterix</groupId>
153 <artifactId>asterix-om</artifactId>
154 <version>0.0.4-SNAPSHOT</version>
155 <type>jar</type>
156 <scope>compile</scope>
157 </dependency>
158 <dependency>
159 <groupId>edu.uci.ics.asterix</groupId>
160 <artifactId>asterix-metadata</artifactId>
161 <version>0.0.4-SNAPSHOT</version>
162 <type>jar</type>
163 <scope>compile</scope>
164 </dependency>
165 <dependency>
166 <groupId>edu.uci.ics.asterix</groupId>
167 <artifactId>asterix-tools</artifactId>
168 <version>0.0.4-SNAPSHOT</version>
169 <type>jar</type>
170 <scope>compile</scope>
171 </dependency>
172 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000173 <groupId>edu.uci.ics.asterix</groupId>
174 <artifactId>asterix-common</artifactId>
175 <version>0.0.4-SNAPSHOT</version>
176 <type>jar</type>
177 <scope>compile</scope>
178 </dependency>
179 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000180 <groupId>com.kenai.nbpwr</groupId>
181 <artifactId>org-apache-commons-io</artifactId>
182 <version>1.3.1-201002241208</version>
183 <scope>test</scope>
184 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000185 <dependency>
186 <groupId>org.apache.hadoop</groupId>
187 <artifactId>hadoop-core</artifactId>
188 <version>0.20.2</version>
189 <type>jar</type>
190 </dependency>
191 <dependency>
192 <groupId>org.apache.hadoop</groupId>
193 <artifactId>hadoop-test</artifactId>
194 <version>0.20.2</version>
195 <type>jar</type>
196 <scope>test</scope>
197 </dependency>
198 <dependency>
199 <groupId>xerces</groupId>
200 <artifactId>xercesImpl</artifactId>
201 <version>2.9.1</version>
202 <type>jar</type>
203 <scope>test</scope>
204 </dependency>
205 <dependency>
206 <groupId>xalan</groupId>
207 <artifactId>xalan</artifactId>
208 <version>2.7.1</version>
209 <type>jar</type>
210 <scope>test</scope>
211 </dependency>
212 <dependency>
213 <groupId>net.sourceforge.cobertura</groupId>
214 <artifactId>cobertura</artifactId>
215 <version>1.9.4</version>
216 </dependency>
217 <dependency>
218 <groupId>edu.uci.ics.asterix</groupId>
219 <artifactId>asterix-test-framework</artifactId>
220 <version>0.0.4-SNAPSHOT</version>
221 <scope>test</scope>
222 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000223 </dependencies>
224
225</project>