blob: cf4d2053f9b12ea3657ad9110ed8590f070c90e5 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070019 <groupId>org.apache.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000022 <artifactId>asterix-tools</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000023
Ian4a816dc2014-11-26 15:46:32 -080024 <licenses>
25 <license>
26 <name>Apache License, Version 2.0</name>
27 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28 <distribution>repo</distribution>
29 <comments>A business-friendly OSS license</comments>
30 </license>
31 </licenses>
32
vinayakb38b7ca42012-03-05 05:44:15 +000033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070038 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000039 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000040 <source>1.7</source>
41 <target>1.7</target>
42 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000043 </configuration>
44 </plugin>
45 <plugin>
vinayakb5ee049d2013-04-06 21:21:29 +000046 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070047 <version>2.4</version>
vinayakb5ee049d2013-04-06 21:21:29 +000048 <executions>
49 <execution>
50 <id>aqlclient</id>
51 <goals>
52 <goal>jar</goal>
53 </goals>
54 <phase>package</phase>
55 <configuration>
56 <classifier>aqlclient</classifier>
57 <archive>
58 <manifest>
Ian Maxonf18bba22015-08-21 12:35:14 -070059 <MainClass>org.apache.asterix.tools.aqlclient.AqlClient</MainClass>
vinayakb5ee049d2013-04-06 21:21:29 +000060 </manifest>
61 </archive>
62 <includes>
63 <include>**/uci/ics/asterix/tools/aqlclient/*</include>
64 </includes>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000070 <groupId>org.codehaus.mojo</groupId>
71 <artifactId>appassembler-maven-plugin</artifactId>
72 <version>1.0</version>
73 <executions>
74 <execution>
75 <configuration>
76 <programs>
77 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070078 <mainClass>org.apache.asterix.tools.TblToAdm</mainClass>
vinayakb38b7ca42012-03-05 05:44:15 +000079 <name>tbl2adm</name>
80 </program>
81 <program>
Ian Maxonf18bba22015-08-21 12:35:14 -070082 <mainClass>org.apache.asterix.tools.datagen.AdgClientDriver</mainClass>
vinayakb38b7ca42012-03-05 05:44:15 +000083 <name>adg</name>
84 </program>
85 </programs>
86 <repositoryLayout>flat</repositoryLayout>
87 <repositoryName>lib</repositoryName>
88 </configuration>
89 <phase>package</phase>
90 <goals>
91 <goal>assemble</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
96 <plugin>
97 <artifactId>maven-assembly-plugin</artifactId>
98 <version>2.2-beta-5</version>
99 <executions>
100 <execution>
101 <configuration>
102 <descriptors>
103 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
104 </descriptors>
105 </configuration>
106 <phase>package</phase>
107 <goals>
108 <goal>attached</goal>
109 </goals>
110 </execution>
111 </executions>
112 </plugin>
113 </plugins>
114 </build>
115
Ian18997ce2014-09-22 16:14:39 -0700116 <repositories>
117 <repository>
118 <id>central</id>
119 <url>http://repo1.maven.org/maven2</url>
120 <releases>
121 <enabled>true</enabled>
122 </releases>
123 <snapshots>
124 <enabled>false</enabled>
125 </snapshots>
126 </repository>
127 <repository>
128 <releases>
129 <enabled>true</enabled>
130 <updatePolicy>always</updatePolicy>
131 <checksumPolicy>warn</checksumPolicy>
132 </releases>
133 <snapshots>
134 <enabled>false</enabled>
135 <updatePolicy>never</updatePolicy>
136 <checksumPolicy>fail</checksumPolicy>
137 </snapshots>
138 <id>HDPReleases</id>
139 <name>HDP Releases</name>
140 <url>http://repo.hortonworks.com/content/repositories/releases</url>
141 <layout>default</layout>
142 </repository>
143 </repositories>
144
vinayakb38b7ca42012-03-05 05:44:15 +0000145 <dependencies>
146 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700147 <groupId>org.apache.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000148 <artifactId>asterix-aql</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700149 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000150 <scope>compile</scope>
151 </dependency>
152 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700153 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000154 <artifactId>asterix-algebra</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700155 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000156 <scope>compile</scope>
157 </dependency>
158 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700159 <groupId>org.apache.asterix</groupId>
ramangrover29566b3a92013-05-28 09:07:10 -0700160 <artifactId>asterix-external-data</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700161 <version>0.8.7-SNAPSHOT</version>
ramangrover29566b3a92013-05-28 09:07:10 -0700162 <scope>compile</scope>
163 </dependency>
164 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700165 <groupId>org.apache.asterix</groupId>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530166 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700167 <version>0.8.7-SNAPSHOT</version>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530168 <scope>compile</scope>
169 </dependency>
170 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700171 <groupId>org.apache.asterix</groupId>
Ian18997ce2014-09-22 16:14:39 -0700172 <artifactId>asterix-metadata</artifactId>
173 <version>0.8.7-SNAPSHOT</version>
174 <scope>compile</scope>
175 </dependency>
176 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700177 <groupId>org.apache.asterix</groupId>
Ian18997ce2014-09-22 16:14:39 -0700178 <artifactId>asterix-events</artifactId>
179 <version>0.8.7-SNAPSHOT</version>
180 <scope>compile</scope>
181 </dependency>
182 <dependency>
183 <groupId>org.apache.hadoop</groupId>
184 <artifactId>hadoop-yarn-common</artifactId>
185 </dependency>
186 <dependency>
187 <groupId>org.apache.hadoop</groupId>
188 <artifactId>hadoop-yarn-client</artifactId>
189 </dependency>
190 <dependency>
191 <groupId>org.apache.hadoop</groupId>
192 <artifactId>hadoop-common</artifactId>
193 </dependency>
194 <dependency>
195 <groupId>commons-codec</groupId>
196 <artifactId>commons-codec</artifactId>
197 <version>1.4</version>
198 </dependency>
199 <dependency>
200 <groupId>commons-net</groupId>
201 <artifactId>commons-net</artifactId>
202 <version>3.1</version>
203 </dependency>
204 <dependency>
205 <groupId>commons-lang</groupId>
206 <artifactId>commons-lang</artifactId>
207 <version>2.5</version>
208 </dependency>
209 <dependency>
210 <groupId>commons-collections</groupId>
211 <artifactId>commons-collections</artifactId>
212 <version>3.2.1</version>
213 </dependency>
214 <dependency>
215 <groupId>commons-configuration</groupId>
216 <artifactId>commons-configuration</artifactId>
217 <version>1.6</version>
218 </dependency>
219
220 <dependency>
221 <groupId>commons-cli</groupId>
222 <artifactId>commons-cli</artifactId>
223 <version>1.2</version>
224 </dependency>
225 <dependency>
226 <groupId>org.apache.commons</groupId>
227 <artifactId>commons-math</artifactId>
228 <version>2.1</version>
229 </dependency>
230 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000231 <groupId>org.apache.httpcomponents</groupId>
232 <artifactId>httpclient</artifactId>
233 <version>4.2.2</version>
234 <scope>compile</scope>
235 </dependency>
236 <dependency>
237 <groupId>org.apache.httpcomponents</groupId>
238 <artifactId>httpcore</artifactId>
239 <version>4.2.2</version>
240 <scope>compile</scope>
241 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000242 </dependencies>
243
vinayakb5ee049d2013-04-06 21:21:29 +0000244</project>