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. ! --> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame] | 10 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 11 | 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] | 12 | <modelVersion>4.0.0</modelVersion> |
| 13 | <parent> |
| 14 | <artifactId>asterix</artifactId> |
| 15 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 16 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 17 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 18 | <artifactId>asterix-app</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 19 | |
| 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <groupId>org.apache.maven.plugins</groupId> |
| 24 | <artifactId>maven-compiler-plugin</artifactId> |
| 25 | <version>2.0.2</version> |
| 26 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 27 | <source>1.7</source> |
| 28 | <target>1.7</target> |
| 29 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 30 | </configuration> |
| 31 | </plugin> |
| 32 | <plugin> |
| 33 | <groupId>org.codehaus.mojo</groupId> |
| 34 | <artifactId>appassembler-maven-plugin</artifactId> |
| 35 | <version>1.0</version> |
| 36 | <executions> |
| 37 | <execution> |
| 38 | <configuration> |
| 39 | <programs> |
| 40 | <program> |
| 41 | <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass> |
| 42 | <name>asterix-web</name> |
| 43 | </program> |
| 44 | <program> |
| 45 | <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass> |
| 46 | <name>asterix-cmd</name> |
| 47 | </program> |
vinayakb | dfc7e99 | 2012-03-14 09:16:17 +0000 | [diff] [blame] | 48 | <program> |
| 49 | <mainClass>edu.uci.ics.asterix.drivers.AsterixCLI</mainClass> |
| 50 | <name>asterix-cli</name> |
| 51 | </program> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 52 | </programs> |
| 53 | <repositoryLayout>flat</repositoryLayout> |
| 54 | <repositoryName>lib</repositoryName> |
| 55 | </configuration> |
| 56 | <phase>package</phase> |
| 57 | <goals> |
| 58 | <goal>assemble</goal> |
| 59 | </goals> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <artifactId>maven-assembly-plugin</artifactId> |
| 65 | <version>2.2-beta-5</version> |
| 66 | <executions> |
| 67 | <execution> |
| 68 | <configuration> |
| 69 | <descriptors> |
| 70 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 71 | </descriptors> |
| 72 | </configuration> |
| 73 | <phase>package</phase> |
| 74 | <goals> |
| 75 | <goal>attached</goal> |
| 76 | </goals> |
| 77 | </execution> |
| 78 | </executions> |
| 79 | </plugin> |
| 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-surefire-plugin</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 83 | <version>2.8</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 84 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 85 | <!-- doesn't work from m2eclipse, currently <additionalClasspathElements> |
| 86 | <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement> |
| 87 | </additionalClasspathElements> --> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 88 | <forkMode>pertest</forkMode> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame] | 89 | <argLine>-enableassertions -Xmx${test.heap.size}m |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 90 | -Dfile.encoding=UTF-8 |
| 91 | -Djava.util.logging.config.file=src/test/resources/logging.properties |
| 92 | -Xdebug |
| 93 | -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n</argLine> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 94 | <includes> |
| 95 | <include>**/*TestSuite.java</include> |
| 96 | <include>**/*Test.java</include> |
| 97 | </includes> |
| 98 | </configuration> |
| 99 | </plugin> |
| 100 | </plugins> |
| 101 | </build> |
| 102 | |
| 103 | <dependencies> |
| 104 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 105 | <groupId>javax.servlet</groupId> |
| 106 | <artifactId>servlet-api</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 107 | <type>jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>edu.uci.ics.hyracks</groupId> |
| 135 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 139 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 140 | </dependency> |
| 141 | <dependency> |
Raman Grover | 68860c9 | 2013-04-19 13:30:27 -0700 | [diff] [blame] | 142 | <groupId>edu.uci.ics.hyracks</groupId> |
| 143 | <artifactId>hyracks-client</artifactId> |
| 144 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 145 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 146 | <groupId>edu.uci.ics.asterix</groupId> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 147 | <artifactId>asterix-algebra</artifactId> |
| 148 | <version>0.8.1-SNAPSHOT</version> |
| 149 | <scope>compile</scope> |
| 150 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 151 | <dependency> |
| 152 | <groupId>edu.uci.ics.asterix</groupId> |
| 153 | <artifactId>asterix-aql</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 154 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 155 | <type>jar</type> |
| 156 | <scope>compile</scope> |
| 157 | </dependency> |
| 158 | <dependency> |
| 159 | <groupId>edu.uci.ics.asterix</groupId> |
| 160 | <artifactId>asterix-om</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 161 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 162 | <type>jar</type> |
| 163 | <scope>compile</scope> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>edu.uci.ics.asterix</groupId> |
| 167 | <artifactId>asterix-metadata</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 168 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 169 | <type>jar</type> |
| 170 | <scope>compile</scope> |
| 171 | </dependency> |
| 172 | <dependency> |
| 173 | <groupId>edu.uci.ics.asterix</groupId> |
| 174 | <artifactId>asterix-tools</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 175 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 176 | <type>jar</type> |
| 177 | <scope>compile</scope> |
| 178 | </dependency> |
| 179 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 180 | <groupId>edu.uci.ics.asterix</groupId> |
| 181 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 182 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 183 | <type>jar</type> |
| 184 | <scope>compile</scope> |
| 185 | </dependency> |
| 186 | <dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 187 | <groupId>edu.uci.ics.asterix</groupId> |
| 188 | <artifactId>asterix-common</artifactId> |
| 189 | <version>0.8.1-SNAPSHOT</version> |
| 190 | <type>test-jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 191 | <scope>test</scope> |
| 192 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 193 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 194 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 195 | <scope>test</scope> </dependency> --> |
| 196 | <dependency> |
| 197 | <groupId>edu.uci.ics.asterix</groupId> |
| 198 | <artifactId>asterix-transactions</artifactId> |
| 199 | <version>0.8.1-SNAPSHOT</version> |
| 200 | <scope>compile</scope> |
| 201 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 202 | <dependency> |
| 203 | <groupId>org.apache.hadoop</groupId> |
| 204 | <artifactId>hadoop-core</artifactId> |
| 205 | <version>0.20.2</version> |
| 206 | <type>jar</type> |
| 207 | </dependency> |
| 208 | <dependency> |
| 209 | <groupId>org.apache.hadoop</groupId> |
| 210 | <artifactId>hadoop-test</artifactId> |
| 211 | <version>0.20.2</version> |
| 212 | <type>jar</type> |
| 213 | <scope>test</scope> |
| 214 | </dependency> |
| 215 | <dependency> |
| 216 | <groupId>xerces</groupId> |
| 217 | <artifactId>xercesImpl</artifactId> |
| 218 | <version>2.9.1</version> |
| 219 | <type>jar</type> |
| 220 | <scope>test</scope> |
| 221 | </dependency> |
| 222 | <dependency> |
| 223 | <groupId>xalan</groupId> |
| 224 | <artifactId>xalan</artifactId> |
| 225 | <version>2.7.1</version> |
| 226 | <type>jar</type> |
| 227 | <scope>test</scope> |
| 228 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 229 | <dependency> |
| 230 | <groupId>edu.uci.ics.asterix</groupId> |
| 231 | <artifactId>asterix-test-framework</artifactId> |
| 232 | <version>0.8.1-SNAPSHOT</version> |
| 233 | <scope>test</scope> |
| 234 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 235 | </dependencies> |
| 236 | |
| 237 | </project> |