Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 3 | ! or more contributor license agreements. See the NOTICE file |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 4 | ! distributed with this work for additional information |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 5 | ! regarding copyright ownership. The ASF licenses this file |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 8 | ! with the License. You may obtain a copy of the License at |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 9 | ! |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 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 |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 15 | ! KIND, either express or implied. See the License for the |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
| 18 | !--> |
Vinayak Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [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"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [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 | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame^] | 24 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 25 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 26 | <artifactId>asterix-common</artifactId> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 27 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [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 | <properties> |
| 38 | <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory> |
| 39 | </properties> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 40 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <groupId>org.apache.maven.plugins</groupId> |
| 45 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 46 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 47 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 48 | <source>1.7</source> |
| 49 | <target>1.7</target> |
| 50 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 51 | </configuration> |
| 52 | </plugin> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 53 | <plugin> |
| 54 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 55 | <artifactId>maven-jaxb2-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 56 | <version>0.9.0</version> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 57 | <executions> |
| 58 | <execution> |
| 59 | <id>configuration</id> |
| 60 | <goals> |
| 61 | <goal>generate</goal> |
| 62 | </goals> |
| 63 | <configuration> |
| 64 | <args> |
| 65 | <arg>-Xsetters</arg> |
| 66 | <arg>-Xvalue-constructor</arg> |
| 67 | </args> |
| 68 | <plugins> |
| 69 | <plugin> |
| 70 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 71 | <artifactId>jaxb2-basics</artifactId> |
| 72 | <version>0.6.2</version> |
| 73 | </plugin> |
| 74 | <plugin> |
| 75 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 76 | <artifactId>jaxb2-value-constructor</artifactId> |
| 77 | <version>3.0</version> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 81 | <schemaIncludes> |
| 82 | <include>asterix-conf.xsd</include> |
| 83 | </schemaIncludes> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 84 | <generatePackage>org.apache.asterix.common.configuration</generatePackage> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 85 | <bindingDirectory>src/main/resources/schema</bindingDirectory> |
| 86 | <bindingIncludes> |
| 87 | <bindingInclude>jaxb-bindings.xjb</bindingInclude> |
| 88 | </bindingIncludes> |
| 89 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 90 | </configuration> |
| 91 | </execution> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 92 | <execution> |
| 93 | <id>cluster</id> |
| 94 | <goals> |
| 95 | <goal>generate</goal> |
| 96 | </goals> |
| 97 | <configuration> |
| 98 | <args> |
| 99 | <arg>-Xsetters</arg> |
| 100 | <arg>-Xvalue-constructor</arg> |
| 101 | </args> |
| 102 | <plugins> |
| 103 | <plugin> |
| 104 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 105 | <artifactId>jaxb2-basics</artifactId> |
| 106 | <version>0.6.2</version> |
| 107 | </plugin> |
| 108 | <plugin> |
| 109 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 110 | <artifactId>jaxb2-value-constructor</artifactId> |
| 111 | <version>3.0</version> |
| 112 | </plugin> |
| 113 | </plugins> |
| 114 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 115 | <schemaIncludes> |
| 116 | <include>cluster.xsd</include> |
| 117 | </schemaIncludes> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 118 | <generatePackage>org.apache.asterix.event.schema.cluster</generatePackage> |
ramangrover29 | b2201c4 | 2013-05-30 15:40:24 -0700 | [diff] [blame] | 119 | <generateDirectory>${project.build.directory}/generated-sources/cluster</generateDirectory> |
| 120 | <bindingDirectory>src/main/resources/schema</bindingDirectory> |
| 121 | <bindingIncludes> |
| 122 | <bindingInclude>jaxb-bindings.xjb</bindingInclude> |
| 123 | </bindingIncludes> |
| 124 | </configuration> |
| 125 | </execution> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 126 | <execution> |
| 127 | <id>yarn_cluster</id> |
| 128 | <goals> |
| 129 | <goal>generate</goal> |
| 130 | </goals> |
| 131 | <configuration> |
| 132 | <args> |
| 133 | <arg>-Xsetters</arg> |
| 134 | <arg>-Xvalue-constructor</arg> |
| 135 | </args> |
| 136 | <plugins> |
| 137 | <plugin> |
| 138 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 139 | <artifactId>jaxb2-basics</artifactId> |
| 140 | <version>0.6.2</version> |
| 141 | </plugin> |
| 142 | <plugin> |
| 143 | <groupId>org.jvnet.jaxb2_commons</groupId> |
| 144 | <artifactId>jaxb2-value-constructor</artifactId> |
| 145 | <version>3.0</version> |
| 146 | </plugin> |
| 147 | </plugins> |
| 148 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 149 | <schemaIncludes> |
| 150 | <include>yarn_cluster.xsd</include> |
| 151 | </schemaIncludes> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 152 | <generatePackage>org.apache.asterix.event.schema.yarnCluster</generatePackage> |
Ian Maxon | 69375a1 | 2015-06-29 16:12:53 -0700 | [diff] [blame] | 153 | <generateDirectory>${project.build.directory}/generated-sources/yarn_cluster</generateDirectory> |
| 154 | <bindingDirectory>src/main/resources/schema</bindingDirectory> |
| 155 | <bindingIncludes> |
| 156 | <bindingInclude>jaxb-bindings.xjb</bindingInclude> |
| 157 | </bindingIncludes> |
| 158 | </configuration> |
| 159 | </execution> |
ramangrover29 | 6c282a1 | 2013-04-28 22:52:35 -0700 | [diff] [blame] | 160 | </executions> |
| 161 | </plugin> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 162 | <plugin> |
| 163 | <groupId>org.apache.maven.plugins</groupId> |
| 164 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 165 | <version>2.4</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 166 | <configuration> |
| 167 | <includes> |
| 168 | <include>**/*.class</include> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 169 | <include>**/README*</include> |
| 170 | <include>**/DISCLAIMER*</include> |
| 171 | <include>**/NOTICE*</include> |
| 172 | <include>**/LICENSE*</include> |
| 173 | <include>**/DEPENDENCIES*</include> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 174 | </includes> |
| 175 | </configuration> |
| 176 | <executions> |
| 177 | <execution> |
| 178 | <goals> |
| 179 | <goal>test-jar</goal> |
| 180 | </goals> |
| 181 | </execution> |
| 182 | </executions> |
| 183 | </plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 184 | </plugins> |
| 185 | </build> |
| 186 | |
| 187 | <dependencies> |
| 188 | <dependency> |
Raman Grover | cbc0034 | 2013-04-22 21:16:54 -0700 | [diff] [blame] | 189 | <groupId>commons-io</groupId> |
| 190 | <artifactId>commons-io</artifactId> |
Raman Grover | cbc0034 | 2013-04-22 21:16:54 -0700 | [diff] [blame] | 191 | </dependency> |
| 192 | <dependency> |
| 193 | <groupId>commons-httpclient</groupId> |
| 194 | <artifactId>commons-httpclient</artifactId> |
| 195 | <version>3.0.1</version> |
| 196 | </dependency> |
| 197 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 198 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 199 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 200 | </dependency> |
| 201 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 202 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 203 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 204 | </dependency> |
| 205 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 206 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 207 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 208 | </dependency> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 209 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 210 | <groupId>org.apache.hyracks</groupId> |
ramangrover29 | f9f7834 | 2013-05-23 15:07:39 -0700 | [diff] [blame] | 211 | <artifactId>hyracks-storage-am-common</artifactId> |
| 212 | </dependency> |
| 213 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 214 | <groupId>org.apache.hyracks</groupId> |
ramangrover29 | f9f7834 | 2013-05-23 15:07:39 -0700 | [diff] [blame] | 215 | <artifactId>hyracks-api</artifactId> |
| 216 | </dependency> |
| 217 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 218 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 219 | <artifactId>asterix-test-framework</artifactId> |
Ian Maxon | 15e46b0 | 2016-02-02 10:39:15 -0800 | [diff] [blame^] | 220 | <version>0.8.8-SNAPSHOT</version> |
ramangrover29 | 330a541 | 2013-04-29 20:59:17 -0700 | [diff] [blame] | 221 | <scope>test</scope> |
| 222 | </dependency> |
| 223 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 224 | <groupId>org.apache.hyracks</groupId> |
zheilbron | 25cb8bf | 2013-06-04 00:04:04 -0700 | [diff] [blame] | 225 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 226 | </dependency> |
| 227 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 228 | <groupId>org.apache.hyracks</groupId> |
zheilbron | 25cb8bf | 2013-06-04 00:04:04 -0700 | [diff] [blame] | 229 | <artifactId> |
| 230 | hyracks-storage-am-lsm-invertedindex |
| 231 | </artifactId> |
| 232 | </dependency> |
| 233 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 234 | <groupId>org.apache.hyracks</groupId> |
zheilbron | 25cb8bf | 2013-06-04 00:04:04 -0700 | [diff] [blame] | 235 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
zheilbron | ba60a38 | 2013-06-04 00:48:52 -0700 | [diff] [blame] | 236 | </dependency> |
| 237 | <dependency> |
Madhusudan.C.S | 117fdf9 | 2013-06-02 23:46:44 -0700 | [diff] [blame] | 238 | <groupId>com.fasterxml.jackson.core</groupId> |
| 239 | <artifactId>jackson-core</artifactId> |
| 240 | <version>2.2.0</version> |
| 241 | </dependency> |
| 242 | <dependency> |
| 243 | <groupId>org.codehaus.jackson</groupId> |
| 244 | <artifactId>jackson-mapper-asl</artifactId> |
| 245 | <version>1.9.12</version> |
zheilbron | 25cb8bf | 2013-06-04 00:04:04 -0700 | [diff] [blame] | 246 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 247 | </dependencies> |
| 248 | |
| 249 | </project> |
| 250 | |