blob: e4eb3c6732c0bcfabb1cfe77f8faa9f2ac8bd5b9 [file] [log] [blame]
Ian Maxon69375a12015-06-29 16:12:53 -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 !-->
15<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">
16 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
20 <version>0.8.7-SNAPSHOT</version>
21 </parent>
22 <artifactId>asterix-yarn</artifactId>
23
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
29 <version>2.0.2</version>
30 <configuration>
31 <source>1.7</source>
32 <target>1.7</target>
33 <fork>true</fork>
34 </configuration>
35 </plugin>
36 <plugin>
37 <artifactId>maven-jar-plugin</artifactId>
38 <executions>
39 <execution>
40 <id>aoya</id>
41 <goals>
42 <goal>jar</goal>
43 </goals>
44 <phase>package</phase>
45 <configuration>
46 <classifier>aoya</classifier>
47 <archive>
48 <manifest>
49 <MainClass>edu.uci.ics.asterix.aoya.Client</MainClass>
50 </manifest>
51 </archive>
52 <includes>
53 <include>**/uci/ics/asterix/tools/aoya/*</include>
54 </includes>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 <plugin>
60 <artifactId>maven-assembly-plugin</artifactId>
61 <version>2.2-beta-5</version>
62 <executions>
63 <execution>
64 <configuration>
65 <descriptors>
66 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
67 </descriptors>
68 </configuration>
69 <phase>package</phase>
70 <goals>
71 <goal>attached</goal>
72 </goals>
73 </execution>
74 </executions>
75 </plugin>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-failsafe-plugin</artifactId>
79 <version>2.6</version>
80 <configuration>
81 <runOrder>alphabetical</runOrder>
82 <forkMode>pertest</forkMode>
83 <excludes>
84 </excludes>
85 <environmentVariables>
86 <JAVA_HOME>${java.home}</JAVA_HOME>
87 </environmentVariables>
88 </configuration>
89 <executions>
90 <execution>
91 <goals>
92 <goal>integration-test</goal>
93 <goal>verify</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
98 </plugins>
99 </build>
100
101 <repositories>
102 <repository>
103 <id>central</id>
104 <url>http://repo1.maven.org/maven2</url>
105 <releases>
106 <enabled>true</enabled>
107 </releases>
108 <snapshots>
109 <enabled>false</enabled>
110 </snapshots>
111 </repository>
112 <repository>
113 <releases>
114 <enabled>true</enabled>
115 <updatePolicy>always</updatePolicy>
116 <checksumPolicy>warn</checksumPolicy>
117 </releases>
118 <snapshots>
119 <enabled>false</enabled>
120 <updatePolicy>never</updatePolicy>
121 <checksumPolicy>fail</checksumPolicy>
122 </snapshots>
123 <id>HDPReleases</id>
124 <name>HDP Releases</name>
125 <url>http://repo.hortonworks.com/content/repositories/releases</url>
126 <layout>default</layout>
127 </repository>
128 </repositories>
129
130 <dependencies>
131 <dependency>
132 <groupId>edu.uci.ics.asterix</groupId>
133 <artifactId>asterix-events</artifactId>
134 <version>0.8.7-SNAPSHOT</version>
135 <scope>test</scope>
136 </dependency>
137 <dependency>
138 <groupId>edu.uci.ics.asterix</groupId>
139 <artifactId>asterix-common</artifactId>
140 <version>0.8.7-SNAPSHOT</version>
141 <type>test-jar</type>
142 <scope>test</scope>
143 </dependency>
144 <dependency>
145 <groupId>edu.uci.ics.asterix</groupId>
146 <artifactId>asterix-test-framework</artifactId>
147 <version>0.8.7-SNAPSHOT</version>
148 <scope>test</scope>
149 </dependency>
150 <dependency>
151 <groupId>edu.uci.ics.asterix</groupId>
152 <artifactId>asterix-common</artifactId>
153 <version>0.8.7-SNAPSHOT</version>
154 </dependency>
155 <dependency>
156 <groupId>org.apache.hadoop</groupId>
157 <artifactId>hadoop-yarn-common</artifactId>
158 <scope>provided</scope>
159 </dependency>
160 <dependency>
161 <groupId>org.apache.hadoop</groupId>
162 <artifactId>hadoop-yarn-client</artifactId>
163 <scope>provided</scope>
164 </dependency>
165 <dependency>
166 <groupId>org.apache.hadoop</groupId>
167 <artifactId>hadoop-common</artifactId>
168 <scope>provided</scope>
169 </dependency>
170 <dependency>
171 <groupId>commons-codec</groupId>
172 <artifactId>commons-codec</artifactId>
173 <version>1.4</version>
174 </dependency>
175 <dependency>
176 <groupId>commons-net</groupId>
177 <artifactId>commons-net</artifactId>
178 <version>3.1</version>
179 </dependency>
180 <dependency>
181 <groupId>commons-lang</groupId>
182 <artifactId>commons-lang</artifactId>
183 <version>2.5</version>
184 </dependency>
185 <dependency>
186 <groupId>commons-collections</groupId>
187 <artifactId>commons-collections</artifactId>
188 <version>3.2.1</version>
189 </dependency>
190 <dependency>
191 <groupId>commons-configuration</groupId>
192 <artifactId>commons-configuration</artifactId>
193 <version>1.6</version>
194 </dependency>
195
196 <dependency>
197 <groupId>commons-cli</groupId>
198 <artifactId>commons-cli</artifactId>
199 <version>1.2</version>
200 </dependency>
201 <dependency>
202 <groupId>org.apache.commons</groupId>
203 <artifactId>commons-math</artifactId>
204 <version>2.1</version>
205 </dependency>
206 <dependency>
207 <groupId>org.apache.httpcomponents</groupId>
208 <artifactId>httpclient</artifactId>
209 <version>4.2.2</version>
210 <scope>compile</scope>
211 </dependency>
212 <dependency>
213 <groupId>org.apache.httpcomponents</groupId>
214 <artifactId>httpcore</artifactId>
215 <version>4.2.2</version>
216 <scope>compile</scope>
217 </dependency>
218 <dependency>
219 <groupId>edu.uci.ics.asterix</groupId>
220 <artifactId>asterix-server</artifactId>
221 <version>0.8.7-SNAPSHOT</version>
222 <type>zip</type>
223 <classifier>binary-assembly</classifier>
224 </dependency>
225 <dependency>
226 <groupId>edu.uci.ics.asterix</groupId>
227 <artifactId>asterix-runtime</artifactId>
228 <version>0.8.7-SNAPSHOT</version>
229 </dependency>
230 <dependency>
231 <groupId>edu.uci.ics.asterix</groupId>
232 <artifactId>asterix-app</artifactId>
233 <version>0.8.7-SNAPSHOT</version>
234 </dependency>
235 <dependency>
236 <groupId>org.slf4j</groupId>
237 <artifactId>slf4j-simple</artifactId>
238 <version>1.6.1</version>
239 </dependency>
240 </dependencies>
241</project>