blob: cfe1aef270c65f61c8ed3e786fdae0da5100e674 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
Ian Maxon6e5f18e2015-11-24 18:02:48 -08003 ! or more contributor license agreements.See the NOTICE file
Ian Maxon928bbd12015-09-14 17:12:48 -07004 ! distributed with this work for additional information
Ian Maxon6e5f18e2015-11-24 18:02:48 -08005 ! regarding copyright ownership.The ASF licenses this file
Ian Maxon928bbd12015-09-14 17:12:48 -07006 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
Ian Maxon6e5f18e2015-11-24 18:02:48 -08008 ! with the License.You may obtain a copy of the License at
Ian Maxon928bbd12015-09-14 17:12:48 -07009 !
Ian Maxon6e5f18e2015-11-24 18:02:48 -080010 ! http://www.apache.org/licenses/LICENSE-2.0
Ian Maxon928bbd12015-09-14 17:12:48 -070011 !
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 Maxon6e5f18e2015-11-24 18:02:48 -080015 ! KIND, either express or implied.See the License for the
Ian Maxon928bbd12015-09-14 17:12:48 -070016 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmannea8ab392013-06-05 15:17:08 -070018 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000019<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">
vinayakb38b7ca42012-03-05 05:44:15 +000020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000025 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000026 <artifactId>asterix-tools</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000027
Ian Maxon6e5f18e2015-11-24 18:02:48 -080028 <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>
Ian4a816dc2014-11-26 15:46:32 -080040
vinayakb38b7ca42012-03-05 05:44:15 +000041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070046 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000047 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000048 <source>1.7</source>
49 <target>1.7</target>
50 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000051 </configuration>
52 </plugin>
53 <plugin>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080054 <groupId>org.apache.maven.plugins</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000055 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070056 <version>2.4</version>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080057 <configuration>
58 <includes>
59 <include>**/*.class</include>
60 <include>**/README*</include>
61 <include>**/DISCLAIMER*</include>
62 <include>**/NOTICE*</include>
63 <include>**/LICENSE*</include>
64 <include>**/DEPENDENCIES*</include>
65 </includes>
66 </configuration>
vinayakb38b7ca42012-03-05 05:44:15 +000067 </plugin>
68 </plugins>
69 </build>
70
Ian18997ce2014-09-22 16:14:39 -070071 <repositories>
72 <repository>
73 <id>central</id>
74 <url>http://repo1.maven.org/maven2</url>
75 <releases>
76 <enabled>true</enabled>
77 </releases>
78 <snapshots>
79 <enabled>false</enabled>
80 </snapshots>
81 </repository>
82 <repository>
83 <releases>
84 <enabled>true</enabled>
85 <updatePolicy>always</updatePolicy>
86 <checksumPolicy>warn</checksumPolicy>
87 </releases>
88 <snapshots>
89 <enabled>false</enabled>
90 <updatePolicy>never</updatePolicy>
91 <checksumPolicy>fail</checksumPolicy>
92 </snapshots>
93 <id>HDPReleases</id>
94 <name>HDP Releases</name>
95 <url>http://repo.hortonworks.com/content/repositories/releases</url>
96 <layout>default</layout>
97 </repository>
98 </repositories>
99
vinayakb38b7ca42012-03-05 05:44:15 +0000100 <dependencies>
101 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700102 <groupId>org.apache.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000103 <artifactId>asterix-aql</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700104 <version>0.8.8-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000105 <scope>compile</scope>
106 </dependency>
107 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700108 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000109 <artifactId>asterix-algebra</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700110 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000111 <scope>compile</scope>
112 </dependency>
113 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700114 <groupId>org.apache.asterix</groupId>
ramangrover29566b3a92013-05-28 09:07:10 -0700115 <artifactId>asterix-external-data</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700116 <version>0.8.8-SNAPSHOT</version>
ramangrover29566b3a92013-05-28 09:07:10 -0700117 <scope>compile</scope>
118 </dependency>
119 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700120 <groupId>org.apache.asterix</groupId>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530121 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700122 <version>0.8.8-SNAPSHOT</version>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530123 <scope>compile</scope>
124 </dependency>
125 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700126 <groupId>org.apache.asterix</groupId>
Ian18997ce2014-09-22 16:14:39 -0700127 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700128 <version>0.8.8-SNAPSHOT</version>
Ian18997ce2014-09-22 16:14:39 -0700129 <scope>compile</scope>
130 </dependency>
131 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700132 <groupId>org.apache.asterix</groupId>
Ian18997ce2014-09-22 16:14:39 -0700133 <artifactId>asterix-events</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700134 <version>0.8.8-SNAPSHOT</version>
Ian18997ce2014-09-22 16:14:39 -0700135 <scope>compile</scope>
136 </dependency>
137 <dependency>
138 <groupId>org.apache.hadoop</groupId>
139 <artifactId>hadoop-yarn-common</artifactId>
140 </dependency>
141 <dependency>
142 <groupId>org.apache.hadoop</groupId>
143 <artifactId>hadoop-yarn-client</artifactId>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.hadoop</groupId>
147 <artifactId>hadoop-common</artifactId>
148 </dependency>
149 <dependency>
150 <groupId>commons-codec</groupId>
151 <artifactId>commons-codec</artifactId>
152 <version>1.4</version>
153 </dependency>
154 <dependency>
155 <groupId>commons-net</groupId>
156 <artifactId>commons-net</artifactId>
157 <version>3.1</version>
158 </dependency>
159 <dependency>
160 <groupId>commons-lang</groupId>
161 <artifactId>commons-lang</artifactId>
162 <version>2.5</version>
163 </dependency>
164 <dependency>
165 <groupId>commons-collections</groupId>
166 <artifactId>commons-collections</artifactId>
167 <version>3.2.1</version>
168 </dependency>
169 <dependency>
170 <groupId>commons-configuration</groupId>
171 <artifactId>commons-configuration</artifactId>
172 <version>1.6</version>
173 </dependency>
174
175 <dependency>
176 <groupId>commons-cli</groupId>
177 <artifactId>commons-cli</artifactId>
178 <version>1.2</version>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.commons</groupId>
182 <artifactId>commons-math</artifactId>
183 <version>2.1</version>
184 </dependency>
185 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000186 <groupId>org.apache.httpcomponents</groupId>
187 <artifactId>httpclient</artifactId>
188 <version>4.2.2</version>
189 <scope>compile</scope>
190 </dependency>
191 <dependency>
192 <groupId>org.apache.httpcomponents</groupId>
193 <artifactId>httpcore</artifactId>
194 <version>4.2.2</version>
195 <scope>compile</scope>
196 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000197 </dependencies>
198
vinayakb5ee049d2013-04-06 21:21:29 +0000199</project>