Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 3 | ! or more contributor license agreements. See the NOTICE file |
| 4 | ! distributed with this work for additional information |
| 5 | ! regarding copyright ownership. The ASF licenses this file |
| 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
| 8 | ! with the License. You may obtain a copy of the License at |
| 9 | ! |
| 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ! |
| 12 | ! Unless required by applicable law or agreed to in writing, |
| 13 | ! software distributed under the License is distributed on an |
| 14 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | ! KIND, either express or implied. See the License for the |
| 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
| 18 | !--> |
Ian Maxon | d2e1e89 | 2015-10-05 12:46:26 -0700 | [diff] [blame] | 19 | <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"> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
Ian Maxon | ab556d1 | 2016-02-02 18:18:05 -0800 | [diff] [blame] | 22 | <artifactId>apache-asterixdb</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 24 | <version>0.8.9-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | <artifactId>asterix-app</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 27 | <licenses> |
| 28 | <license> |
| 29 | <name>Apache License, Version 2.0</name> |
| 30 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 31 | <distribution>repo</distribution> |
| 32 | <comments>A business-friendly OSS license</comments> |
| 33 | </license> |
| 34 | </licenses> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 35 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 36 | <properties> |
| 37 | <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory> |
| 38 | </properties> |
| 39 | |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.maven.plugins</groupId> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 44 | <artifactId>maven-jar-plugin</artifactId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 45 | <executions> |
| 46 | <execution> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 47 | <goals> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 48 | <goal>jar</goal> |
| 49 | <goal>test-jar</goal> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 50 | </goals> |
| 51 | </execution> |
| 52 | </executions> |
| 53 | </plugin> |
Ian Maxon | f7b6453 | 2015-12-09 17:28:18 -0800 | [diff] [blame] | 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-jar-plugin</artifactId> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <goals> |
| 60 | <goal>jar</goal> |
| 61 | <goal>test-jar</goal> |
| 62 | </goals> |
| 63 | </execution> |
| 64 | </executions> |
| 65 | </plugin> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 66 | <plugin> |
Abdullah Alamoudi | 30904b8 | 2016-03-22 19:25:10 +0300 | [diff] [blame] | 67 | <artifactId>maven-resources-plugin</artifactId> |
| 68 | <executions> |
| 69 | <execution> |
| 70 | <id>copy-external-library</id> |
| 71 | <phase>generate-resources</phase> |
| 72 | <goals> |
| 73 | <goal>copy-resources</goal> |
| 74 | </goals> |
| 75 | <configuration> |
| 76 | <outputDirectory>src/test/resources/externallib</outputDirectory> |
| 77 | <overwrite>true</overwrite> |
| 78 | <resources> |
| 79 | <resource> |
| 80 | <directory>../asterix-external-data/target</directory> |
| 81 | <includes> |
| 82 | <include>testlib-zip-binary-assembly.zip</include> |
| 83 | </includes> |
| 84 | </resource> |
| 85 | </resources> |
| 86 | </configuration> |
| 87 | </execution> |
| 88 | <execution> |
| 89 | <id>copy-beer-csv</id> |
| 90 | <phase>generate-resources</phase> |
| 91 | <goals> |
| 92 | <goal>copy-resources</goal> |
| 93 | </goals> |
| 94 | <configuration> |
| 95 | <outputDirectory>target/data/csv</outputDirectory> |
| 96 | <overwrite>true</overwrite> |
| 97 | <resources> |
| 98 | <resource> |
| 99 | <directory>../asterix-external-data/src/test/resources</directory> |
| 100 | <includes> |
| 101 | <include>beer.csv</include> |
| 102 | </includes> |
| 103 | </resource> |
| 104 | </resources> |
| 105 | </configuration> |
| 106 | </execution> |
| 107 | </executions> |
| 108 | </plugin> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 109 | </plugins> |
| 110 | </build> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 111 | <dependencies> |
| 112 | <dependency> |
| 113 | <groupId>javax.servlet</groupId> |
| 114 | <artifactId>servlet-api</artifactId> |
| 115 | <type>jar</type> |
| 116 | </dependency> |
| 117 | <dependency> |
| 118 | <groupId>org.eclipse.jetty</groupId> |
| 119 | <artifactId>jetty-server</artifactId> |
| 120 | <version>8.0.0.M2</version> |
| 121 | <type>jar</type> |
| 122 | <scope>compile</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.eclipse.jetty</groupId> |
| 126 | <artifactId>jetty-servlet</artifactId> |
| 127 | <version>8.0.0.M2</version> |
| 128 | <type>jar</type> |
| 129 | <scope>compile</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 132 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 133 | <artifactId>hyracks-control-cc</artifactId> |
| 134 | </dependency> |
| 135 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 136 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 137 | <artifactId>hyracks-control-nc</artifactId> |
| 138 | </dependency> |
| 139 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 140 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 141 | <artifactId>algebricks-compiler</artifactId> |
| 142 | </dependency> |
| 143 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 144 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 145 | <artifactId>hyracks-client</artifactId> |
| 146 | </dependency> |
| 147 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 148 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 149 | <artifactId>asterix-algebra</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 150 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 151 | <scope>compile</scope> |
| 152 | </dependency> |
| 153 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 154 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 155 | <artifactId>asterix-om</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 156 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 157 | <type>jar</type> |
| 158 | <scope>compile</scope> |
| 159 | </dependency> |
| 160 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 161 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 162 | <artifactId>asterix-metadata</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 163 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 164 | <type>jar</type> |
| 165 | <scope>compile</scope> |
| 166 | </dependency> |
| 167 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 168 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 169 | <artifactId>asterix-tools</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 170 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 171 | <type>jar</type> |
| 172 | <scope>compile</scope> |
| 173 | </dependency> |
| 174 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 175 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 176 | <artifactId>asterix-common</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 177 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 178 | <type>jar</type> |
| 179 | <scope>compile</scope> |
| 180 | </dependency> |
| 181 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 182 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 183 | <artifactId>asterix-common</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 184 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 185 | <type>test-jar</type> |
| 186 | <scope>test</scope> |
| 187 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 188 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 189 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 190 | <scope>test</scope> </dependency> --> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 191 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 192 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 193 | <artifactId>asterix-transactions</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 194 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 195 | <scope>compile</scope> |
| 196 | </dependency> |
| 197 | <dependency> |
| 198 | <groupId>org.apache.hadoop</groupId> |
| 199 | <artifactId>hadoop-client</artifactId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 200 | </dependency> |
| 201 | <dependency> |
| 202 | <groupId>org.apache.hadoop</groupId> |
| 203 | <artifactId>hadoop-hdfs</artifactId> |
| 204 | <type>jar</type> |
| 205 | <scope>test</scope> |
| 206 | </dependency> |
| 207 | <dependency> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 208 | <groupId>org.apache.hadoop</groupId> |
| 209 | <artifactId>hadoop-hdfs</artifactId> |
| 210 | <type>jar</type> |
| 211 | <scope>compile</scope> |
| 212 | </dependency> |
| 213 | <dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 214 | <groupId>xerces</groupId> |
| 215 | <artifactId>xercesImpl</artifactId> |
| 216 | <version>2.9.1</version> |
| 217 | <type>jar</type> |
| 218 | <scope>compile</scope> |
| 219 | </dependency> |
| 220 | <dependency> |
| 221 | <groupId>xalan</groupId> |
| 222 | <artifactId>xalan</artifactId> |
| 223 | <version>2.7.1</version> |
| 224 | <type>jar</type> |
| 225 | <scope>test</scope> |
| 226 | </dependency> |
| 227 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 228 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 229 | <artifactId>asterix-test-framework</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 230 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 231 | <scope>test</scope> |
| 232 | </dependency> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 233 | <dependency> |
| 234 | <groupId>org.mockito</groupId> |
| 235 | <artifactId>mockito-all</artifactId> |
| 236 | <version>1.10.19</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 237 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 238 | </dependency> |
| 239 | <dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 240 | <groupId>com.e-movimento.tinytools</groupId> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 241 | <artifactId>privilegedaccessor</artifactId> |
| 242 | <version>1.2.2</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 243 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 244 | </dependency> |
Murtadha Hubail | 209f390 | 2015-11-11 22:11:28 -0800 | [diff] [blame] | 245 | <dependency> |
| 246 | <groupId>org.apache.asterix</groupId> |
| 247 | <artifactId>asterix-replication</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 248 | <version>${project.version}</version> |
Murtadha Hubail | 209f390 | 2015-11-11 22:11:28 -0800 | [diff] [blame] | 249 | <scope>compile</scope> |
| 250 | </dependency> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 251 | <dependency> |
| 252 | <groupId>org.apache.asterix</groupId> |
| 253 | <artifactId>asterix-external-data</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 254 | <version>${project.version}</version> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 255 | </dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 256 | </dependencies> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 257 | </project> |