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> |
| 22 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 24 | <version>0.8.8-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 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 38 | <groupId>org.codehaus.mojo</groupId> |
| 39 | <artifactId>appassembler-maven-plugin</artifactId> |
| 40 | <version>1.0</version> |
| 41 | <executions> |
| 42 | <execution> |
| 43 | <configuration> |
| 44 | <programs> |
| 45 | <program> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 46 | <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 47 | <name>asterix-web</name> |
| 48 | </program> |
| 49 | <program> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 50 | <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 51 | <name>asterix-cmd</name> |
| 52 | </program> |
| 53 | <program> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 54 | <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 55 | <name>asterix-cli</name> |
| 56 | </program> |
| 57 | </programs> |
| 58 | <repositoryLayout>flat</repositoryLayout> |
| 59 | <repositoryName>lib</repositoryName> |
| 60 | </configuration> |
| 61 | <phase>package</phase> |
| 62 | <goals> |
| 63 | <goal>assemble</goal> |
| 64 | </goals> |
| 65 | </execution> |
| 66 | </executions> |
| 67 | </plugin> |
| 68 | <plugin> |
| 69 | <artifactId>maven-assembly-plugin</artifactId> |
| 70 | <version>2.2-beta-5</version> |
| 71 | <executions> |
| 72 | <execution> |
| 73 | <configuration> |
| 74 | <descriptors> |
| 75 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 76 | </descriptors> |
| 77 | </configuration> |
| 78 | <phase>package</phase> |
| 79 | <goals> |
| 80 | <goal>attached</goal> |
| 81 | </goals> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
Ian Maxon | f7b6453 | 2015-12-09 17:28:18 -0800 | [diff] [blame] | 85 | <plugin> |
| 86 | <groupId>org.apache.maven.plugins</groupId> |
| 87 | <artifactId>maven-jar-plugin</artifactId> |
| 88 | <executions> |
| 89 | <execution> |
| 90 | <goals> |
| 91 | <goal>jar</goal> |
| 92 | <goal>test-jar</goal> |
| 93 | </goals> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 97 | <plugin> |
| 98 | <artifactId>maven-resources-plugin</artifactId> |
| 99 | <executions> |
| 100 | <execution> |
| 101 | <id>copy-external-library</id> |
| 102 | <phase>generate-resources</phase> |
| 103 | <goals> |
| 104 | <goal>copy-resources</goal> |
| 105 | </goals> |
| 106 | <configuration> |
| 107 | <outputDirectory>src/test/resources/externallib</outputDirectory> |
| 108 | <overwrite>true</overwrite> |
| 109 | <resources> |
| 110 | <resource> |
| 111 | <directory>../asterix-external-data/target</directory> |
| 112 | <includes> |
| 113 | <include>testlib-zip-binary-assembly.zip</include> |
| 114 | </includes> |
| 115 | </resource> |
| 116 | </resources> |
| 117 | </configuration> |
| 118 | </execution> |
| 119 | </executions> |
| 120 | </plugin> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 121 | </plugins> |
| 122 | </build> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 123 | <dependencies> |
| 124 | <dependency> |
| 125 | <groupId>javax.servlet</groupId> |
| 126 | <artifactId>servlet-api</artifactId> |
| 127 | <type>jar</type> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.eclipse.jetty</groupId> |
| 131 | <artifactId>jetty-server</artifactId> |
| 132 | <version>8.0.0.M2</version> |
| 133 | <type>jar</type> |
| 134 | <scope>compile</scope> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>org.eclipse.jetty</groupId> |
| 138 | <artifactId>jetty-servlet</artifactId> |
| 139 | <version>8.0.0.M2</version> |
| 140 | <type>jar</type> |
| 141 | <scope>compile</scope> |
| 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-control-cc</artifactId> |
| 146 | </dependency> |
| 147 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 148 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 149 | <artifactId>hyracks-control-nc</artifactId> |
| 150 | </dependency> |
| 151 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 152 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 153 | <artifactId>algebricks-compiler</artifactId> |
| 154 | </dependency> |
| 155 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 156 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 157 | <artifactId>hyracks-client</artifactId> |
| 158 | </dependency> |
| 159 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 160 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 161 | <artifactId>asterix-algebra</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 162 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 163 | <scope>compile</scope> |
| 164 | </dependency> |
| 165 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 166 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 167 | <artifactId>asterix-om</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 168 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 169 | <type>jar</type> |
| 170 | <scope>compile</scope> |
| 171 | </dependency> |
| 172 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 173 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 174 | <artifactId>asterix-metadata</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 175 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 176 | <type>jar</type> |
| 177 | <scope>compile</scope> |
| 178 | </dependency> |
| 179 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 180 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 181 | <artifactId>asterix-tools</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 182 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 183 | <type>jar</type> |
| 184 | <scope>compile</scope> |
| 185 | </dependency> |
| 186 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 187 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 188 | <artifactId>asterix-common</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 189 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 190 | <type>jar</type> |
| 191 | <scope>compile</scope> |
| 192 | </dependency> |
| 193 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 194 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 195 | <artifactId>asterix-common</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 196 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 197 | <type>test-jar</type> |
| 198 | <scope>test</scope> |
| 199 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 200 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 201 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 202 | <scope>test</scope> </dependency> --> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 203 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 204 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 205 | <artifactId>asterix-transactions</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 206 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 207 | <scope>compile</scope> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>org.apache.hadoop</groupId> |
| 211 | <artifactId>hadoop-client</artifactId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 212 | </dependency> |
| 213 | <dependency> |
| 214 | <groupId>org.apache.hadoop</groupId> |
| 215 | <artifactId>hadoop-hdfs</artifactId> |
| 216 | <type>jar</type> |
| 217 | <scope>test</scope> |
| 218 | </dependency> |
| 219 | <dependency> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 220 | <groupId>org.apache.hadoop</groupId> |
| 221 | <artifactId>hadoop-hdfs</artifactId> |
| 222 | <type>jar</type> |
| 223 | <scope>compile</scope> |
| 224 | </dependency> |
| 225 | <dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 226 | <groupId>xerces</groupId> |
| 227 | <artifactId>xercesImpl</artifactId> |
| 228 | <version>2.9.1</version> |
| 229 | <type>jar</type> |
| 230 | <scope>compile</scope> |
| 231 | </dependency> |
| 232 | <dependency> |
| 233 | <groupId>xalan</groupId> |
| 234 | <artifactId>xalan</artifactId> |
| 235 | <version>2.7.1</version> |
| 236 | <type>jar</type> |
| 237 | <scope>test</scope> |
| 238 | </dependency> |
| 239 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 240 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 241 | <artifactId>asterix-test-framework</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 242 | <version>${project.version}</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 243 | <scope>test</scope> |
| 244 | </dependency> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 245 | <dependency> |
| 246 | <groupId>org.mockito</groupId> |
| 247 | <artifactId>mockito-all</artifactId> |
| 248 | <version>1.10.19</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 249 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 250 | </dependency> |
| 251 | <dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 252 | <groupId>com.e-movimento.tinytools</groupId> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 253 | <artifactId>privilegedaccessor</artifactId> |
| 254 | <version>1.2.2</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 255 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 256 | </dependency> |
Murtadha Hubail | 209f390 | 2015-11-11 22:11:28 -0800 | [diff] [blame] | 257 | <dependency> |
| 258 | <groupId>org.apache.asterix</groupId> |
| 259 | <artifactId>asterix-replication</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 260 | <version>${project.version}</version> |
Murtadha Hubail | 209f390 | 2015-11-11 22:11:28 -0800 | [diff] [blame] | 261 | <scope>compile</scope> |
| 262 | </dependency> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 263 | <dependency> |
| 264 | <groupId>org.apache.asterix</groupId> |
| 265 | <artifactId>asterix-external-data</artifactId> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 266 | <version>${project.version}</version> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 267 | </dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 268 | </dependencies> |
Abdullah Alamoudi | ac683db | 2016-02-23 00:59:31 +0300 | [diff] [blame] | 269 | </project> |