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