blob: ac377a8a51567005f042bee5617b69fb71bafb31 [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>
Ian Maxonab556d12016-02-02 18:18:05 -080022 <artifactId>apache-asterixdb</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxonc1889c02016-02-10 15:26:24 -080024 <version>0.8.9-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>
vinayakb5ee049d2013-04-06 21:21:29 +000045 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070046 <version>2.4</version>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080047 <configuration>
48 <includes>
49 <include>**/*.class</include>
50 <include>**/README*</include>
51 <include>**/DISCLAIMER*</include>
52 <include>**/NOTICE*</include>
53 <include>**/LICENSE*</include>
54 <include>**/DEPENDENCIES*</include>
55 </includes>
56 </configuration>
vinayakb38b7ca42012-03-05 05:44:15 +000057 </plugin>
58 </plugins>
59 </build>
60
Ian18997ce2014-09-22 16:14:39 -070061 <repositories>
62 <repository>
63 <id>central</id>
64 <url>http://repo1.maven.org/maven2</url>
65 <releases>
66 <enabled>true</enabled>
67 </releases>
68 <snapshots>
69 <enabled>false</enabled>
70 </snapshots>
71 </repository>
72 <repository>
73 <releases>
74 <enabled>true</enabled>
75 <updatePolicy>always</updatePolicy>
76 <checksumPolicy>warn</checksumPolicy>
77 </releases>
78 <snapshots>
79 <enabled>false</enabled>
80 <updatePolicy>never</updatePolicy>
81 <checksumPolicy>fail</checksumPolicy>
82 </snapshots>
83 <id>HDPReleases</id>
84 <name>HDP Releases</name>
85 <url>http://repo.hortonworks.com/content/repositories/releases</url>
86 <layout>default</layout>
87 </repository>
88 </repositories>
89
vinayakb38b7ca42012-03-05 05:44:15 +000090 <dependencies>
91 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070092 <groupId>org.apache.asterix</groupId>
Yingyi Bu391f09e2015-10-29 13:49:39 -070093 <artifactId>asterix-lang-aql</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -080094 <version>0.8.9-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +000095 <scope>compile</scope>
96 </dependency>
97 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070098 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +000099 <artifactId>asterix-algebra</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -0800100 <version>0.8.9-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000101 <scope>compile</scope>
102 </dependency>
103 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700104 <groupId>org.apache.asterix</groupId>
ramangrover29566b3a92013-05-28 09:07:10 -0700105 <artifactId>asterix-external-data</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -0800106 <version>0.8.9-SNAPSHOT</version>
ramangrover29566b3a92013-05-28 09:07:10 -0700107 <scope>compile</scope>
108 </dependency>
109 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700110 <groupId>org.apache.asterix</groupId>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530111 <artifactId>asterix-metadata</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -0800112 <version>0.8.9-SNAPSHOT</version>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530113 <scope>compile</scope>
114 </dependency>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700115 <!--<dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700116 <groupId>org.apache.asterix</groupId>
Ian18997ce2014-09-22 16:14:39 -0700117 <artifactId>asterix-metadata</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -0800118 <version>0.8.9-SNAPSHOT</version>
Ian18997ce2014-09-22 16:14:39 -0700119 <scope>compile</scope>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700120 </dependency>-->
Ian18997ce2014-09-22 16:14:39 -0700121 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700122 <groupId>org.apache.asterix</groupId>
Ian18997ce2014-09-22 16:14:39 -0700123 <artifactId>asterix-events</artifactId>
Ian Maxonc1889c02016-02-10 15:26:24 -0800124 <version>0.8.9-SNAPSHOT</version>
Ian18997ce2014-09-22 16:14:39 -0700125 <scope>compile</scope>
126 </dependency>
127 <dependency>
128 <groupId>org.apache.hadoop</groupId>
129 <artifactId>hadoop-yarn-common</artifactId>
130 </dependency>
131 <dependency>
132 <groupId>org.apache.hadoop</groupId>
133 <artifactId>hadoop-yarn-client</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>org.apache.hadoop</groupId>
137 <artifactId>hadoop-common</artifactId>
138 </dependency>
139 <dependency>
140 <groupId>commons-codec</groupId>
141 <artifactId>commons-codec</artifactId>
142 <version>1.4</version>
143 </dependency>
144 <dependency>
145 <groupId>commons-net</groupId>
146 <artifactId>commons-net</artifactId>
147 <version>3.1</version>
148 </dependency>
149 <dependency>
150 <groupId>commons-lang</groupId>
151 <artifactId>commons-lang</artifactId>
152 <version>2.5</version>
153 </dependency>
154 <dependency>
155 <groupId>commons-collections</groupId>
156 <artifactId>commons-collections</artifactId>
157 <version>3.2.1</version>
158 </dependency>
159 <dependency>
160 <groupId>commons-configuration</groupId>
161 <artifactId>commons-configuration</artifactId>
162 <version>1.6</version>
163 </dependency>
164
165 <dependency>
166 <groupId>commons-cli</groupId>
167 <artifactId>commons-cli</artifactId>
168 <version>1.2</version>
169 </dependency>
170 <dependency>
171 <groupId>org.apache.commons</groupId>
172 <artifactId>commons-math</artifactId>
173 <version>2.1</version>
174 </dependency>
175 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000176 <groupId>org.apache.httpcomponents</groupId>
177 <artifactId>httpclient</artifactId>
Yingyi Bu751315f2015-11-24 22:08:41 -0800178 <version>4.3</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000179 <scope>compile</scope>
180 </dependency>
181 <dependency>
182 <groupId>org.apache.httpcomponents</groupId>
183 <artifactId>httpcore</artifactId>
Yingyi Bu751315f2015-11-24 22:08:41 -0800184 <version>4.3</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000185 <scope>compile</scope>
186 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000187 </dependencies>
188
vinayakb5ee049d2013-04-06 21:21:29 +0000189</project>