blob: cbb322d9f721bfa3661d5f2b20c8821f80fce402 [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
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.
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
Ian4a816dc2014-11-26 15:46:32 -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
vinayakb38b7ca42012-03-05 05:44:15 +000037 <build>
38 <plugins>
39 <plugin>
vinayakb5ee049d2013-04-06 21:21:29 +000040 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070041 <version>2.4</version>
vinayakb5ee049d2013-04-06 21:21:29 +000042 <executions>
43 <execution>
44 <id>aqlclient</id>
45 <goals>
46 <goal>jar</goal>
47 </goals>
48 <phase>package</phase>
49 <configuration>
50 <classifier>aqlclient</classifier>
51 <archive>
52 <manifest>
Ian Maxonf18bba22015-08-21 12:35:14 -070053 <MainClass>org.apache.asterix.tools.aqlclient.AqlClient</MainClass>
vinayakb5ee049d2013-04-06 21:21:29 +000054 </manifest>
55 </archive>
56 <includes>
57 <include>**/uci/ics/asterix/tools/aqlclient/*</include>
58 </includes>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000064 <groupId>org.codehaus.mojo</groupId>
65 <artifactId>appassembler-maven-plugin</artifactId>
66 <version>1.0</version>
67 <executions>
68 <execution>
69 <configuration>
70 <programs>
71 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070072 <mainClass>org.apache.asterix.tools.TblToAdm</mainClass>
vinayakb38b7ca42012-03-05 05:44:15 +000073 <name>tbl2adm</name>
74 </program>
75 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070076 <mainClass>org.apache.asterix.tools.datagen.AdgClientDriver</mainClass>
vinayakb38b7ca42012-03-05 05:44:15 +000077 <name>adg</name>
78 </program>
79 </programs>
80 <repositoryLayout>flat</repositoryLayout>
81 <repositoryName>lib</repositoryName>
82 </configuration>
83 <phase>package</phase>
84 <goals>
85 <goal>assemble</goal>
86 </goals>
87 </execution>
88 </executions>
89 </plugin>
90 <plugin>
91 <artifactId>maven-assembly-plugin</artifactId>
92 <version>2.2-beta-5</version>
93 <executions>
94 <execution>
95 <configuration>
96 <descriptors>
97 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
98 </descriptors>
99 </configuration>
100 <phase>package</phase>
101 <goals>
102 <goal>attached</goal>
103 </goals>
104 </execution>
105 </executions>
106 </plugin>
107 </plugins>
108 </build>
109
Ian18997ce2014-09-22 16:14:39 -0700110 <repositories>
111 <repository>
112 <id>central</id>
113 <url>http://repo1.maven.org/maven2</url>
114 <releases>
115 <enabled>true</enabled>
116 </releases>
117 <snapshots>
118 <enabled>false</enabled>
119 </snapshots>
120 </repository>
121 <repository>
122 <releases>
123 <enabled>true</enabled>
124 <updatePolicy>always</updatePolicy>
125 <checksumPolicy>warn</checksumPolicy>
126 </releases>
127 <snapshots>
128 <enabled>false</enabled>
129 <updatePolicy>never</updatePolicy>
130 <checksumPolicy>fail</checksumPolicy>
131 </snapshots>
132 <id>HDPReleases</id>
133 <name>HDP Releases</name>
134 <url>http://repo.hortonworks.com/content/repositories/releases</url>
135 <layout>default</layout>
136 </repository>
137 </repositories>
138
vinayakb38b7ca42012-03-05 05:44:15 +0000139 <dependencies>
140 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700141 <groupId>org.apache.asterix</groupId>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700142 <artifactId>asterix-lang-aql</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700143 <version>0.8.8-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000144 <scope>compile</scope>
145 </dependency>
146 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700147 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000148 <artifactId>asterix-algebra</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700149 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000150 <scope>compile</scope>
151 </dependency>
152 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700153 <groupId>org.apache.asterix</groupId>
ramangrover29566b3a92013-05-28 09:07:10 -0700154 <artifactId>asterix-external-data</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700155 <version>0.8.8-SNAPSHOT</version>
ramangrover29566b3a92013-05-28 09:07:10 -0700156 <scope>compile</scope>
157 </dependency>
158 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700159 <groupId>org.apache.asterix</groupId>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530160 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700161 <version>0.8.8-SNAPSHOT</version>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530162 <scope>compile</scope>
163 </dependency>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700164 <!--<dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700165 <groupId>org.apache.asterix</groupId>
Ian18997ce2014-09-22 16:14:39 -0700166 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700167 <version>0.8.8-SNAPSHOT</version>
Ian18997ce2014-09-22 16:14:39 -0700168 <scope>compile</scope>
Yingyi Bu391f09e2015-10-29 13:49:39 -0700169 </dependency>-->
Ian18997ce2014-09-22 16:14:39 -0700170 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700171 <groupId>org.apache.asterix</groupId>
Ian18997ce2014-09-22 16:14:39 -0700172 <artifactId>asterix-events</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700173 <version>0.8.8-SNAPSHOT</version>
Ian18997ce2014-09-22 16:14:39 -0700174 <scope>compile</scope>
175 </dependency>
176 <dependency>
177 <groupId>org.apache.hadoop</groupId>
178 <artifactId>hadoop-yarn-common</artifactId>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.hadoop</groupId>
182 <artifactId>hadoop-yarn-client</artifactId>
183 </dependency>
184 <dependency>
185 <groupId>org.apache.hadoop</groupId>
186 <artifactId>hadoop-common</artifactId>
187 </dependency>
188 <dependency>
189 <groupId>commons-codec</groupId>
190 <artifactId>commons-codec</artifactId>
191 <version>1.4</version>
192 </dependency>
193 <dependency>
194 <groupId>commons-net</groupId>
195 <artifactId>commons-net</artifactId>
196 <version>3.1</version>
197 </dependency>
198 <dependency>
199 <groupId>commons-lang</groupId>
200 <artifactId>commons-lang</artifactId>
201 <version>2.5</version>
202 </dependency>
203 <dependency>
204 <groupId>commons-collections</groupId>
205 <artifactId>commons-collections</artifactId>
206 <version>3.2.1</version>
207 </dependency>
208 <dependency>
209 <groupId>commons-configuration</groupId>
210 <artifactId>commons-configuration</artifactId>
211 <version>1.6</version>
212 </dependency>
213
214 <dependency>
215 <groupId>commons-cli</groupId>
216 <artifactId>commons-cli</artifactId>
217 <version>1.2</version>
218 </dependency>
219 <dependency>
220 <groupId>org.apache.commons</groupId>
221 <artifactId>commons-math</artifactId>
222 <version>2.1</version>
223 </dependency>
224 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000225 <groupId>org.apache.httpcomponents</groupId>
226 <artifactId>httpclient</artifactId>
227 <version>4.2.2</version>
228 <scope>compile</scope>
229 </dependency>
230 <dependency>
231 <groupId>org.apache.httpcomponents</groupId>
232 <artifactId>httpcore</artifactId>
233 <version>4.2.2</version>
234 <scope>compile</scope>
235 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000236 </dependencies>
237
vinayakb5ee049d2013-04-06 21:21:29 +0000238</project>