ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 1 | <!-- ! Copyright 2009-2013 by The Regents of the University of California |
| 2 | ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may |
| 3 | not use this file except in compliance with the License. ! you may obtain |
| 4 | a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0 |
| 5 | ! ! Unless required by applicable law or agreed to in writing, software ! |
| 6 | distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT |
| 7 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the |
| 8 | License for the specific language governing permissions and ! limitations |
| 9 | under the License. ! --> |
Vinayak Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [diff] [blame] | 10 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <parent> |
| 13 | <artifactId>asterix</artifactId> |
| 14 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 15 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 16 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 17 | <artifactId>asterix-app</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 18 | |
| 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.apache.maven.plugins</groupId> |
| 23 | <artifactId>maven-compiler-plugin</artifactId> |
| 24 | <version>2.0.2</version> |
| 25 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 26 | <source>1.7</source> |
| 27 | <target>1.7</target> |
| 28 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 29 | </configuration> |
| 30 | </plugin> |
| 31 | <plugin> |
| 32 | <groupId>org.codehaus.mojo</groupId> |
| 33 | <artifactId>appassembler-maven-plugin</artifactId> |
| 34 | <version>1.0</version> |
| 35 | <executions> |
| 36 | <execution> |
| 37 | <configuration> |
| 38 | <programs> |
| 39 | <program> |
| 40 | <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass> |
| 41 | <name>asterix-web</name> |
| 42 | </program> |
| 43 | <program> |
| 44 | <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass> |
| 45 | <name>asterix-cmd</name> |
| 46 | </program> |
vinayakb | dfc7e99 | 2012-03-14 09:16:17 +0000 | [diff] [blame] | 47 | <program> |
| 48 | <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass> |
| 49 | <name>asterix-cli</name> |
| 50 | </program> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 51 | </programs> |
| 52 | <repositoryLayout>flat</repositoryLayout> |
| 53 | <repositoryName>lib</repositoryName> |
| 54 | </configuration> |
| 55 | <phase>package</phase> |
| 56 | <goals> |
| 57 | <goal>assemble</goal> |
| 58 | </goals> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | <plugin> |
| 63 | <artifactId>maven-assembly-plugin</artifactId> |
| 64 | <version>2.2-beta-5</version> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <configuration> |
| 68 | <descriptors> |
| 69 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 70 | </descriptors> |
| 71 | </configuration> |
| 72 | <phase>package</phase> |
| 73 | <goals> |
| 74 | <goal>attached</goal> |
| 75 | </goals> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
| 79 | <plugin> |
| 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-surefire-plugin</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 82 | <version>2.8</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 83 | <configuration> |
Chris Hillery | 8806d98 | 2014-01-31 02:59:26 -0800 | [diff] [blame] | 84 | <systemPropertyVariables> |
| 85 | <skipSlowTests>true</skipSlowTests> |
| 86 | </systemPropertyVariables> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 87 | <!-- doesn't work from m2eclipse, currently <additionalClasspathElements> |
| 88 | <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement> |
| 89 | </additionalClasspathElements> --> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 90 | <forkMode>pertest</forkMode> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame] | 91 | <argLine>-enableassertions -Xmx${test.heap.size}m |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 92 | -Dfile.encoding=UTF-8 |
| 93 | -Djava.util.logging.config.file=src/test/resources/logging.properties |
| 94 | -Xdebug |
| 95 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 96 | <includes> |
| 97 | <include>**/*TestSuite.java</include> |
| 98 | <include>**/*Test.java</include> |
| 99 | </includes> |
| 100 | </configuration> |
| 101 | </plugin> |
| 102 | </plugins> |
| 103 | </build> |
| 104 | |
| 105 | <dependencies> |
| 106 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 107 | <groupId>javax.servlet</groupId> |
| 108 | <artifactId>servlet-api</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 109 | <type>jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>org.eclipse.jetty</groupId> |
| 113 | <artifactId>jetty-server</artifactId> |
| 114 | <version>8.0.0.M2</version> |
| 115 | <type>jar</type> |
| 116 | <scope>compile</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.eclipse.jetty</groupId> |
| 120 | <artifactId>jetty-servlet</artifactId> |
| 121 | <version>8.0.0.M2</version> |
| 122 | <type>jar</type> |
| 123 | <scope>compile</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>junit</groupId> |
| 127 | <artifactId>junit</artifactId> |
| 128 | <version>4.8.1</version> |
| 129 | <scope>test</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>edu.uci.ics.hyracks</groupId> |
| 133 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>edu.uci.ics.hyracks</groupId> |
| 137 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 141 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 142 | </dependency> |
| 143 | <dependency> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame] | 144 | <groupId>edu.uci.ics.hyracks</groupId> |
| 145 | <artifactId>hyracks-client</artifactId> |
| 146 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 147 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 148 | <groupId>edu.uci.ics.asterix</groupId> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 149 | <artifactId>asterix-algebra</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 150 | <version>0.8.4-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 151 | <scope>compile</scope> |
| 152 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 153 | <dependency> |
| 154 | <groupId>edu.uci.ics.asterix</groupId> |
| 155 | <artifactId>asterix-aql</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 156 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 157 | <type>jar</type> |
| 158 | <scope>compile</scope> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>edu.uci.ics.asterix</groupId> |
| 162 | <artifactId>asterix-om</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 163 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 164 | <type>jar</type> |
| 165 | <scope>compile</scope> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>edu.uci.ics.asterix</groupId> |
| 169 | <artifactId>asterix-metadata</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 170 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 171 | <type>jar</type> |
| 172 | <scope>compile</scope> |
| 173 | </dependency> |
| 174 | <dependency> |
| 175 | <groupId>edu.uci.ics.asterix</groupId> |
| 176 | <artifactId>asterix-tools</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 177 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 178 | <type>jar</type> |
| 179 | <scope>compile</scope> |
| 180 | </dependency> |
| 181 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 182 | <groupId>edu.uci.ics.asterix</groupId> |
| 183 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 184 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 185 | <type>jar</type> |
| 186 | <scope>compile</scope> |
| 187 | </dependency> |
| 188 | <dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 189 | <groupId>edu.uci.ics.asterix</groupId> |
| 190 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 191 | <version>0.8.4-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 192 | <type>test-jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 193 | <scope>test</scope> |
| 194 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 195 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 196 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 197 | <scope>test</scope> </dependency> --> |
| 198 | <dependency> |
| 199 | <groupId>edu.uci.ics.asterix</groupId> |
| 200 | <artifactId>asterix-transactions</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 201 | <version>0.8.4-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 202 | <scope>compile</scope> |
| 203 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 204 | <dependency> |
| 205 | <groupId>org.apache.hadoop</groupId> |
| 206 | <artifactId>hadoop-core</artifactId> |
| 207 | <version>0.20.2</version> |
| 208 | <type>jar</type> |
| 209 | </dependency> |
| 210 | <dependency> |
| 211 | <groupId>org.apache.hadoop</groupId> |
| 212 | <artifactId>hadoop-test</artifactId> |
| 213 | <version>0.20.2</version> |
| 214 | <type>jar</type> |
| 215 | <scope>test</scope> |
| 216 | </dependency> |
| 217 | <dependency> |
| 218 | <groupId>xerces</groupId> |
| 219 | <artifactId>xercesImpl</artifactId> |
| 220 | <version>2.9.1</version> |
| 221 | <type>jar</type> |
| 222 | <scope>test</scope> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>xalan</groupId> |
| 226 | <artifactId>xalan</artifactId> |
| 227 | <version>2.7.1</version> |
| 228 | <type>jar</type> |
| 229 | <scope>test</scope> |
| 230 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 231 | <dependency> |
| 232 | <groupId>edu.uci.ics.asterix</groupId> |
| 233 | <artifactId>asterix-test-framework</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 234 | <version>0.8.4-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 235 | <scope>test</scope> |
| 236 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 237 | </dependencies> |
| 238 | |
| 239 | </project> |