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 | 15e46b0 | 2016-02-02 10:39:15 -0800 | [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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 27 | |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 28 | <licenses> |
| 29 | <license> |
| 30 | <name>Apache License, Version 2.0</name> |
| 31 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 32 | <distribution>repo</distribution> |
| 33 | <comments>A business-friendly OSS license</comments> |
| 34 | </license> |
| 35 | </licenses> |
| 36 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 37 | <properties> |
| 38 | <appendedResourcesDirectory>${basedir}/src/main/appended-resources</appendedResourcesDirectory> |
| 39 | </properties> |
| 40 | |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <groupId>org.apache.maven.plugins</groupId> |
| 45 | <artifactId>maven-compiler-plugin</artifactId> |
| 46 | <version>2.3.2</version> |
| 47 | <configuration> |
| 48 | <source>1.7</source> |
| 49 | <target>1.7</target> |
| 50 | <fork>true</fork> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | <plugin> |
Abdullah Alamoudi | 5a78ca0 | 2015-11-19 09:23:27 -0800 | [diff] [blame] | 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-jar-plugin</artifactId> |
| 56 | <executions> |
| 57 | <execution> |
| 58 | <goals> |
| 59 | <goal>jar</goal> |
| 60 | <goal>test-jar</goal> |
| 61 | </goals> |
| 62 | </execution> |
| 63 | </executions> |
| 64 | </plugin> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 65 | </plugins> |
| 66 | </build> |
| 67 | |
| 68 | <dependencies> |
| 69 | <dependency> |
| 70 | <groupId>javax.servlet</groupId> |
| 71 | <artifactId>servlet-api</artifactId> |
| 72 | <type>jar</type> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.eclipse.jetty</groupId> |
| 76 | <artifactId>jetty-server</artifactId> |
| 77 | <version>8.0.0.M2</version> |
| 78 | <type>jar</type> |
| 79 | <scope>compile</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.eclipse.jetty</groupId> |
| 83 | <artifactId>jetty-servlet</artifactId> |
| 84 | <version>8.0.0.M2</version> |
| 85 | <type>jar</type> |
| 86 | <scope>compile</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 89 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 90 | <artifactId>hyracks-control-cc</artifactId> |
| 91 | </dependency> |
| 92 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 93 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 94 | <artifactId>hyracks-control-nc</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 97 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 98 | <artifactId>algebricks-compiler</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 101 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 102 | <artifactId>hyracks-client</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 105 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 106 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 107 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 108 | <scope>compile</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 111 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 112 | <artifactId>asterix-aql</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 113 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 114 | <type>jar</type> |
| 115 | <scope>compile</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 118 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 119 | <artifactId>asterix-om</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 120 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 121 | <type>jar</type> |
| 122 | <scope>compile</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 125 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 126 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 127 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 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.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 133 | <artifactId>asterix-tools</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 134 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 135 | <type>jar</type> |
| 136 | <scope>compile</scope> |
| 137 | </dependency> |
| 138 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 139 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 140 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 141 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 142 | <type>jar</type> |
| 143 | <scope>compile</scope> |
| 144 | </dependency> |
| 145 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 146 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 147 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 148 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 149 | <type>test-jar</type> |
| 150 | <scope>test</scope> |
| 151 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 152 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 153 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 154 | <scope>test</scope> </dependency> --> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 155 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 156 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 157 | <artifactId>asterix-transactions</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 158 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 159 | <scope>compile</scope> |
| 160 | </dependency> |
| 161 | <dependency> |
| 162 | <groupId>org.apache.hadoop</groupId> |
| 163 | <artifactId>hadoop-client</artifactId> |
| 164 | <type>jar</type> |
| 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>org.apache.hadoop</groupId> |
| 168 | <artifactId>hadoop-hdfs</artifactId> |
| 169 | <type>jar</type> |
| 170 | <scope>test</scope> |
| 171 | </dependency> |
| 172 | <dependency> |
| 173 | <groupId>xerces</groupId> |
| 174 | <artifactId>xercesImpl</artifactId> |
| 175 | <version>2.9.1</version> |
| 176 | <type>jar</type> |
| 177 | <scope>compile</scope> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>xalan</groupId> |
| 181 | <artifactId>xalan</artifactId> |
| 182 | <version>2.7.1</version> |
| 183 | <type>jar</type> |
| 184 | <scope>test</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-test-framework</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame] | 189 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 190 | <scope>test</scope> |
| 191 | </dependency> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 192 | <dependency> |
| 193 | <groupId>org.mockito</groupId> |
| 194 | <artifactId>mockito-all</artifactId> |
| 195 | <version>1.10.19</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 196 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 197 | </dependency> |
| 198 | <dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 199 | <groupId>com.e-movimento.tinytools</groupId> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 200 | <artifactId>privilegedaccessor</artifactId> |
| 201 | <version>1.2.2</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 202 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 203 | </dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 204 | </dependencies> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 205 | |
| 206 | </project> |