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> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 84 | <!-- doesn't work from m2eclipse, currently <additionalClasspathElements> |
| 85 | <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement> |
| 86 | </additionalClasspathElements> --> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 87 | <forkMode>pertest</forkMode> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame] | 88 | <argLine>-enableassertions -Xmx${test.heap.size}m |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 89 | -Dfile.encoding=UTF-8 |
| 90 | -Djava.util.logging.config.file=src/test/resources/logging.properties |
| 91 | -Xdebug |
| 92 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 93 | <includes> |
| 94 | <include>**/*TestSuite.java</include> |
| 95 | <include>**/*Test.java</include> |
| 96 | </includes> |
| 97 | </configuration> |
| 98 | </plugin> |
| 99 | </plugins> |
| 100 | </build> |
| 101 | |
| 102 | <dependencies> |
| 103 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 104 | <groupId>javax.servlet</groupId> |
| 105 | <artifactId>servlet-api</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 106 | <type>jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>edu.uci.ics.hyracks</groupId> |
| 134 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 138 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 139 | </dependency> |
| 140 | <dependency> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame] | 141 | <groupId>edu.uci.ics.hyracks</groupId> |
| 142 | <artifactId>hyracks-client</artifactId> |
| 143 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 144 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 145 | <groupId>edu.uci.ics.asterix</groupId> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 146 | <artifactId>asterix-algebra</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 147 | <version>0.8.4-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 148 | <scope>compile</scope> |
| 149 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 150 | <dependency> |
| 151 | <groupId>edu.uci.ics.asterix</groupId> |
| 152 | <artifactId>asterix-aql</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 153 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 154 | <type>jar</type> |
| 155 | <scope>compile</scope> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>edu.uci.ics.asterix</groupId> |
| 159 | <artifactId>asterix-om</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 160 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 161 | <type>jar</type> |
| 162 | <scope>compile</scope> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>edu.uci.ics.asterix</groupId> |
| 166 | <artifactId>asterix-metadata</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 167 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 168 | <type>jar</type> |
| 169 | <scope>compile</scope> |
| 170 | </dependency> |
| 171 | <dependency> |
| 172 | <groupId>edu.uci.ics.asterix</groupId> |
| 173 | <artifactId>asterix-tools</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 174 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 175 | <type>jar</type> |
| 176 | <scope>compile</scope> |
| 177 | </dependency> |
| 178 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 179 | <groupId>edu.uci.ics.asterix</groupId> |
| 180 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 181 | <version>0.8.4-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 182 | <type>jar</type> |
| 183 | <scope>compile</scope> |
| 184 | </dependency> |
| 185 | <dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 186 | <groupId>edu.uci.ics.asterix</groupId> |
| 187 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 188 | <version>0.8.4-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 189 | <type>test-jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 190 | <scope>test</scope> |
| 191 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 192 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 193 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 194 | <scope>test</scope> </dependency> --> |
| 195 | <dependency> |
| 196 | <groupId>edu.uci.ics.asterix</groupId> |
| 197 | <artifactId>asterix-transactions</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 198 | <version>0.8.4-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 199 | <scope>compile</scope> |
| 200 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 201 | <dependency> |
| 202 | <groupId>org.apache.hadoop</groupId> |
| 203 | <artifactId>hadoop-core</artifactId> |
| 204 | <version>0.20.2</version> |
| 205 | <type>jar</type> |
| 206 | </dependency> |
| 207 | <dependency> |
| 208 | <groupId>org.apache.hadoop</groupId> |
| 209 | <artifactId>hadoop-test</artifactId> |
| 210 | <version>0.20.2</version> |
| 211 | <type>jar</type> |
| 212 | <scope>test</scope> |
| 213 | </dependency> |
| 214 | <dependency> |
| 215 | <groupId>xerces</groupId> |
| 216 | <artifactId>xercesImpl</artifactId> |
| 217 | <version>2.9.1</version> |
| 218 | <type>jar</type> |
| 219 | <scope>test</scope> |
| 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>xalan</groupId> |
| 223 | <artifactId>xalan</artifactId> |
| 224 | <version>2.7.1</version> |
| 225 | <type>jar</type> |
| 226 | <scope>test</scope> |
| 227 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 228 | <dependency> |
| 229 | <groupId>edu.uci.ics.asterix</groupId> |
| 230 | <artifactId>asterix-test-framework</artifactId> |
Vinayak Borkar | 9e00d47 | 2013-12-22 12:45:40 -0800 | [diff] [blame] | 231 | <version>0.8.4-SNAPSHOT</version> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 232 | <scope>test</scope> |
| 233 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 234 | </dependencies> |
| 235 | |
| 236 | </project> |