blob: 22e1509cdbef358f0e07334928924dd641171194 [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>
19 <groupId>edu.uci.ics.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
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070029 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000030 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000031 <source>1.7</source>
32 <target>1.7</target>
33 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000034 </configuration>
35 </plugin>
36 <plugin>
vinayakb5ee049d2013-04-06 21:21:29 +000037 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070038 <version>2.4</version>
vinayakb5ee049d2013-04-06 21:21:29 +000039 <executions>
40 <execution>
41 <id>aqlclient</id>
42 <goals>
43 <goal>jar</goal>
44 </goals>
45 <phase>package</phase>
46 <configuration>
47 <classifier>aqlclient</classifier>
48 <archive>
49 <manifest>
50 <MainClass>edu.uci.ics.asterix.tools.aqlclient.AqlClient</MainClass>
51 </manifest>
52 </archive>
53 <includes>
54 <include>**/uci/ics/asterix/tools/aqlclient/*</include>
55 </includes>
56 </configuration>
57 </execution>
58 </executions>
59 </plugin>
60 <plugin>
vinayakb38b7ca42012-03-05 05:44:15 +000061 <groupId>org.codehaus.mojo</groupId>
62 <artifactId>appassembler-maven-plugin</artifactId>
63 <version>1.0</version>
64 <executions>
65 <execution>
66 <configuration>
67 <programs>
68 <program>
69 <mainClass>edu.uci.ics.asterix.tools.TblToAdm</mainClass>
70 <name>tbl2adm</name>
71 </program>
72 <program>
73 <mainClass>edu.uci.ics.asterix.tools.datagen.AdgClientDriver</mainClass>
74 <name>adg</name>
75 </program>
76 </programs>
77 <repositoryLayout>flat</repositoryLayout>
78 <repositoryName>lib</repositoryName>
79 </configuration>
80 <phase>package</phase>
81 <goals>
82 <goal>assemble</goal>
83 </goals>
84 </execution>
85 </executions>
86 </plugin>
87 <plugin>
88 <artifactId>maven-assembly-plugin</artifactId>
89 <version>2.2-beta-5</version>
90 <executions>
91 <execution>
92 <configuration>
93 <descriptors>
94 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
95 </descriptors>
96 </configuration>
97 <phase>package</phase>
98 <goals>
99 <goal>attached</goal>
100 </goals>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105 </build>
106
Ian18997ce2014-09-22 16:14:39 -0700107 <repositories>
108 <repository>
109 <id>central</id>
110 <url>http://repo1.maven.org/maven2</url>
111 <releases>
112 <enabled>true</enabled>
113 </releases>
114 <snapshots>
115 <enabled>false</enabled>
116 </snapshots>
117 </repository>
118 <repository>
119 <releases>
120 <enabled>true</enabled>
121 <updatePolicy>always</updatePolicy>
122 <checksumPolicy>warn</checksumPolicy>
123 </releases>
124 <snapshots>
125 <enabled>false</enabled>
126 <updatePolicy>never</updatePolicy>
127 <checksumPolicy>fail</checksumPolicy>
128 </snapshots>
129 <id>HDPReleases</id>
130 <name>HDP Releases</name>
131 <url>http://repo.hortonworks.com/content/repositories/releases</url>
132 <layout>default</layout>
133 </repository>
134 </repositories>
135
vinayakb38b7ca42012-03-05 05:44:15 +0000136 <dependencies>
137 <dependency>
138 <groupId>edu.uci.ics.asterix</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000139 <artifactId>asterix-aql</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700140 <version>0.8.7-SNAPSHOT</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000141 <scope>compile</scope>
142 </dependency>
143 <dependency>
144 <groupId>edu.uci.ics.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000145 <artifactId>asterix-algebra</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700146 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000147 <scope>compile</scope>
148 </dependency>
149 <dependency>
ramangrover29566b3a92013-05-28 09:07:10 -0700150 <groupId>edu.uci.ics.asterix</groupId>
151 <artifactId>asterix-external-data</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700152 <version>0.8.7-SNAPSHOT</version>
ramangrover29566b3a92013-05-28 09:07:10 -0700153 <scope>compile</scope>
154 </dependency>
155 <dependency>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530156 <groupId>edu.uci.ics.asterix</groupId>
157 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700158 <version>0.8.7-SNAPSHOT</version>
Raman Groverd4fd2ed2013-11-07 20:40:21 +0530159 <scope>compile</scope>
160 </dependency>
161 <dependency>
Ian18997ce2014-09-22 16:14:39 -0700162 <groupId>edu.uci.ics.asterix</groupId>
163 <artifactId>asterix-metadata</artifactId>
164 <version>0.8.7-SNAPSHOT</version>
165 <scope>compile</scope>
166 </dependency>
167 <dependency>
168 <groupId>edu.uci.ics.asterix</groupId>
169 <artifactId>asterix-events</artifactId>
170 <version>0.8.7-SNAPSHOT</version>
171 <scope>compile</scope>
172 </dependency>
173 <dependency>
174 <groupId>org.apache.hadoop</groupId>
175 <artifactId>hadoop-yarn-common</artifactId>
176 </dependency>
177 <dependency>
178 <groupId>org.apache.hadoop</groupId>
179 <artifactId>hadoop-yarn-client</artifactId>
180 </dependency>
181 <dependency>
182 <groupId>org.apache.hadoop</groupId>
183 <artifactId>hadoop-common</artifactId>
184 </dependency>
185 <dependency>
186 <groupId>commons-codec</groupId>
187 <artifactId>commons-codec</artifactId>
188 <version>1.4</version>
189 </dependency>
190 <dependency>
191 <groupId>commons-net</groupId>
192 <artifactId>commons-net</artifactId>
193 <version>3.1</version>
194 </dependency>
195 <dependency>
196 <groupId>commons-lang</groupId>
197 <artifactId>commons-lang</artifactId>
198 <version>2.5</version>
199 </dependency>
200 <dependency>
201 <groupId>commons-collections</groupId>
202 <artifactId>commons-collections</artifactId>
203 <version>3.2.1</version>
204 </dependency>
205 <dependency>
206 <groupId>commons-configuration</groupId>
207 <artifactId>commons-configuration</artifactId>
208 <version>1.6</version>
209 </dependency>
210
211 <dependency>
212 <groupId>commons-cli</groupId>
213 <artifactId>commons-cli</artifactId>
214 <version>1.2</version>
215 </dependency>
216 <dependency>
217 <groupId>org.apache.commons</groupId>
218 <artifactId>commons-math</artifactId>
219 <version>2.1</version>
220 </dependency>
221 <dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000222 <groupId>org.apache.httpcomponents</groupId>
223 <artifactId>httpclient</artifactId>
224 <version>4.2.2</version>
225 <scope>compile</scope>
226 </dependency>
227 <dependency>
228 <groupId>org.apache.httpcomponents</groupId>
229 <artifactId>httpcore</artifactId>
230 <version>4.2.2</version>
231 <scope>compile</scope>
232 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000233 </dependencies>
234
vinayakb5ee049d2013-04-06 21:21:29 +0000235</project>