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> |
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 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-compiler-plugin</artifactId> |
| 42 | <version>2.3.2</version> |
| 43 | <configuration> |
| 44 | <source>1.7</source> |
| 45 | <target>1.7</target> |
| 46 | <fork>true</fork> |
| 47 | </configuration> |
| 48 | </plugin> |
| 49 | <plugin> |
| 50 | <groupId>org.codehaus.mojo</groupId> |
| 51 | <artifactId>appassembler-maven-plugin</artifactId> |
| 52 | <version>1.0</version> |
| 53 | <executions> |
| 54 | <execution> |
| 55 | <configuration> |
| 56 | <programs> |
| 57 | <program> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 58 | <mainClass>org.apache.asterix.drivers.AsterixWebServer</mainClass> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 59 | <name>asterix-web</name> |
| 60 | </program> |
| 61 | <program> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 62 | <mainClass>org.apache.asterix.drivers.AsterixClientDriver</mainClass> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 63 | <name>asterix-cmd</name> |
| 64 | </program> |
| 65 | <program> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 66 | <mainClass>org.apache.asterix.drivers.AsterixCLI</mainClass> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 67 | <name>asterix-cli</name> |
| 68 | </program> |
| 69 | </programs> |
| 70 | <repositoryLayout>flat</repositoryLayout> |
| 71 | <repositoryName>lib</repositoryName> |
| 72 | </configuration> |
| 73 | <phase>package</phase> |
| 74 | <goals> |
| 75 | <goal>assemble</goal> |
| 76 | </goals> |
| 77 | </execution> |
| 78 | </executions> |
| 79 | </plugin> |
| 80 | <plugin> |
| 81 | <artifactId>maven-assembly-plugin</artifactId> |
| 82 | <version>2.2-beta-5</version> |
| 83 | <executions> |
| 84 | <execution> |
| 85 | <configuration> |
| 86 | <descriptors> |
| 87 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 88 | </descriptors> |
| 89 | </configuration> |
| 90 | <phase>package</phase> |
| 91 | <goals> |
| 92 | <goal>attached</goal> |
| 93 | </goals> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
Abdullah Alamoudi | 5a78ca0 | 2015-11-19 09:23:27 -0800 | [diff] [blame^] | 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-jar-plugin</artifactId> |
| 100 | <executions> |
| 101 | <execution> |
| 102 | <goals> |
| 103 | <goal>jar</goal> |
| 104 | <goal>test-jar</goal> |
| 105 | </goals> |
| 106 | </execution> |
| 107 | </executions> |
| 108 | </plugin> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 109 | </plugins> |
| 110 | </build> |
| 111 | |
| 112 | <dependencies> |
| 113 | <dependency> |
| 114 | <groupId>javax.servlet</groupId> |
| 115 | <artifactId>servlet-api</artifactId> |
| 116 | <type>jar</type> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.eclipse.jetty</groupId> |
| 120 | <artifactId>jetty-server</artifactId> |
| 121 | <version>8.0.0.M2</version> |
| 122 | <type>jar</type> |
| 123 | <scope>compile</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.eclipse.jetty</groupId> |
| 127 | <artifactId>jetty-servlet</artifactId> |
| 128 | <version>8.0.0.M2</version> |
| 129 | <type>jar</type> |
| 130 | <scope>compile</scope> |
| 131 | </dependency> |
| 132 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 133 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 134 | <artifactId>hyracks-control-cc</artifactId> |
| 135 | </dependency> |
| 136 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 137 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 138 | <artifactId>hyracks-control-nc</artifactId> |
| 139 | </dependency> |
| 140 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 141 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 142 | <artifactId>algebricks-compiler</artifactId> |
| 143 | </dependency> |
| 144 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 145 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 146 | <artifactId>hyracks-client</artifactId> |
| 147 | </dependency> |
| 148 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 149 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 150 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 151 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 152 | <scope>compile</scope> |
| 153 | </dependency> |
| 154 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 155 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 156 | <artifactId>asterix-aql</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 157 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 158 | <type>jar</type> |
| 159 | <scope>compile</scope> |
| 160 | </dependency> |
| 161 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 162 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 163 | <artifactId>asterix-om</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 164 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 165 | <type>jar</type> |
| 166 | <scope>compile</scope> |
| 167 | </dependency> |
| 168 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 169 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 170 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 171 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 172 | <type>jar</type> |
| 173 | <scope>compile</scope> |
| 174 | </dependency> |
| 175 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 176 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 177 | <artifactId>asterix-tools</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 178 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 179 | <type>jar</type> |
| 180 | <scope>compile</scope> |
| 181 | </dependency> |
| 182 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 183 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 184 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 185 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 186 | <type>jar</type> |
| 187 | <scope>compile</scope> |
| 188 | </dependency> |
| 189 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 190 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 191 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 192 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 193 | <type>test-jar</type> |
| 194 | <scope>test</scope> |
| 195 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 196 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 197 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 198 | <scope>test</scope> </dependency> --> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 199 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 200 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 201 | <artifactId>asterix-transactions</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 202 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 203 | <scope>compile</scope> |
| 204 | </dependency> |
| 205 | <dependency> |
| 206 | <groupId>org.apache.hadoop</groupId> |
| 207 | <artifactId>hadoop-client</artifactId> |
| 208 | <type>jar</type> |
| 209 | </dependency> |
| 210 | <dependency> |
| 211 | <groupId>org.apache.hadoop</groupId> |
| 212 | <artifactId>hadoop-hdfs</artifactId> |
| 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>compile</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> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 231 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 232 | <artifactId>asterix-test-framework</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 233 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 234 | <scope>test</scope> |
| 235 | </dependency> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 236 | <dependency> |
| 237 | <groupId>org.mockito</groupId> |
| 238 | <artifactId>mockito-all</artifactId> |
| 239 | <version>1.10.19</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 240 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 241 | </dependency> |
| 242 | <dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 243 | <groupId>com.e-movimento.tinytools</groupId> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 244 | <artifactId>privilegedaccessor</artifactId> |
| 245 | <version>1.2.2</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 246 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 247 | </dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 248 | </dependencies> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 249 | |
| 250 | </project> |