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> |
| 97 | </plugins> |
| 98 | </build> |
| 99 | |
| 100 | <dependencies> |
| 101 | <dependency> |
| 102 | <groupId>javax.servlet</groupId> |
| 103 | <artifactId>servlet-api</artifactId> |
| 104 | <type>jar</type> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.eclipse.jetty</groupId> |
| 108 | <artifactId>jetty-server</artifactId> |
| 109 | <version>8.0.0.M2</version> |
| 110 | <type>jar</type> |
| 111 | <scope>compile</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>org.eclipse.jetty</groupId> |
| 115 | <artifactId>jetty-servlet</artifactId> |
| 116 | <version>8.0.0.M2</version> |
| 117 | <type>jar</type> |
| 118 | <scope>compile</scope> |
| 119 | </dependency> |
| 120 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 121 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 122 | <artifactId>hyracks-control-cc</artifactId> |
| 123 | </dependency> |
| 124 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 125 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 126 | <artifactId>hyracks-control-nc</artifactId> |
| 127 | </dependency> |
| 128 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 129 | <groupId>org.apache.hyracks</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 130 | <artifactId>algebricks-compiler</artifactId> |
| 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-client</artifactId> |
| 135 | </dependency> |
| 136 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 137 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 138 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 139 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 140 | <scope>compile</scope> |
| 141 | </dependency> |
| 142 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 143 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 144 | <artifactId>asterix-aql</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 145 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 146 | <type>jar</type> |
| 147 | <scope>compile</scope> |
| 148 | </dependency> |
| 149 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 150 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 151 | <artifactId>asterix-om</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 152 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 153 | <type>jar</type> |
| 154 | <scope>compile</scope> |
| 155 | </dependency> |
| 156 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 157 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 158 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 159 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 160 | <type>jar</type> |
| 161 | <scope>compile</scope> |
| 162 | </dependency> |
| 163 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 164 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 165 | <artifactId>asterix-tools</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 166 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 167 | <type>jar</type> |
| 168 | <scope>compile</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 171 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 172 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 173 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 174 | <type>jar</type> |
| 175 | <scope>compile</scope> |
| 176 | </dependency> |
| 177 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 178 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 179 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 180 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 181 | <type>test-jar</type> |
| 182 | <scope>test</scope> |
| 183 | </dependency> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 184 | <!-- posssible remove this <dependency> <groupId>com.kenai.nbpwr</groupId> |
| 185 | <artifactId>org-apache-commons-io</artifactId> <version>1.3.1-201002241208</version> |
| 186 | <scope>test</scope> </dependency> --> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 187 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 188 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 189 | <artifactId>asterix-transactions</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 190 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 191 | <scope>compile</scope> |
| 192 | </dependency> |
| 193 | <dependency> |
| 194 | <groupId>org.apache.hadoop</groupId> |
| 195 | <artifactId>hadoop-client</artifactId> |
| 196 | <type>jar</type> |
| 197 | </dependency> |
| 198 | <dependency> |
| 199 | <groupId>org.apache.hadoop</groupId> |
| 200 | <artifactId>hadoop-hdfs</artifactId> |
| 201 | <type>jar</type> |
| 202 | <scope>test</scope> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>xerces</groupId> |
| 206 | <artifactId>xercesImpl</artifactId> |
| 207 | <version>2.9.1</version> |
| 208 | <type>jar</type> |
| 209 | <scope>compile</scope> |
| 210 | </dependency> |
| 211 | <dependency> |
| 212 | <groupId>xalan</groupId> |
| 213 | <artifactId>xalan</artifactId> |
| 214 | <version>2.7.1</version> |
| 215 | <type>jar</type> |
| 216 | <scope>test</scope> |
| 217 | </dependency> |
| 218 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 219 | <groupId>org.apache.asterix</groupId> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 220 | <artifactId>asterix-test-framework</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame^] | 221 | <version>0.8.8-SNAPSHOT</version> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 222 | <scope>test</scope> |
| 223 | </dependency> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 224 | <dependency> |
| 225 | <groupId>org.mockito</groupId> |
| 226 | <artifactId>mockito-all</artifactId> |
| 227 | <version>1.10.19</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 228 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 229 | </dependency> |
| 230 | <dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 231 | <groupId>com.e-movimento.tinytools</groupId> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 232 | <artifactId>privilegedaccessor</artifactId> |
| 233 | <version>1.2.2</version> |
Yingyi Bu | df6d42d | 2015-07-18 22:13:25 -0700 | [diff] [blame] | 234 | <scope>test</scope> |
Yingyi Bu | 0bae161 | 2015-06-17 22:45:28 -0700 | [diff] [blame] | 235 | </dependency> |
Preston Carman | c66d23a | 2015-07-08 23:44:13 -0700 | [diff] [blame] | 236 | </dependencies> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 237 | |
| 238 | </project> |