blob: 4062b232f4a4f6e8cf576ac0ca415506de635107 [file] [log] [blame]
Ian Maxon928bbd12015-09-14 17:12:48 -07001<!--
2 ! 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.
18 !-->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080019<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">
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>asterix</artifactId>
23 <groupId>org.apache.asterix</groupId>
24 <version>0.8.8-SNAPSHOT</version>
25 </parent>
26 <licenses>
27 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 <distribution>repo</distribution>
31 <comments>A business-friendly OSS license</comments>
32 </license>
33 </licenses>
34 <artifactId>asterix-external-data</artifactId>
35 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.jvnet.jaxb2.maven2</groupId>
39 <artifactId>maven-jaxb2-plugin</artifactId>
40 <version>0.9.0</version>
41 <executions>
42 <execution>
43 <id>configuration</id>
44 <goals>
45 <goal>generate</goal>
46 </goals>
47 <configuration>
48 <schemaDirectory>src/main/resources/schema</schemaDirectory>
49 <schemaIncludes>
50 <include>library.xsd</include>
51 </schemaIncludes>
52 <generatePackage>org.apache.asterix.external.library</generatePackage>
53 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
54 </configuration>
55 </execution>
56 </executions>
57 </plugin>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-jar-plugin</artifactId>
61 <version>2.4</version>
62 <configuration>
63 <includes>
64 <include>**/*.class</include>
65 <include>**/*.txt</include>
66 </includes>
67 </configuration>
68 <executions>
69 <execution>
70 <goals>
71 <goal>test-jar</goal>
72 </goals>
73 <phase>package</phase>
74 </execution>
75 </executions>
76 </plugin>
77 <plugin>
78 <artifactId>maven-assembly-plugin</artifactId>
79 <version>2.2-beta-5</version>
80 <executions>
81 <execution>
82 <configuration>
83 <descriptor>src/main/assembly/binary-assembly-libzip.xml</descriptor>
84 <finalName>testlib-zip</finalName>
85 </configuration>
86 <phase>package</phase>
87 <goals>
88 <goal>attached</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93 </plugins>
94 </build>
95 <dependencies>
96 <dependency>
97 <groupId>javax.servlet</groupId>
98 <artifactId>servlet-api</artifactId>
99 <type>jar</type>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.asterix</groupId>
103 <artifactId>asterix-om</artifactId>
104 <version>0.8.8-SNAPSHOT</version>
105 <type>jar</type>
106 <scope>compile</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.asterix</groupId>
110 <artifactId>asterix-runtime</artifactId>
111 <version>0.8.8-SNAPSHOT</version>
112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.apache.hyracks</groupId>
117 <artifactId>algebricks-compiler</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>com.kenai.nbpwr</groupId>
121 <artifactId>org-apache-commons-io</artifactId>
122 <version>1.3.1-201002241208</version>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.twitter4j</groupId>
127 <artifactId>twitter4j-core</artifactId>
128 <version>[4.0,)</version>
129 </dependency>
130 <dependency>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700131 <groupId>org.twitter4j</groupId>
132 <artifactId>twitter4j-stream</artifactId>
Heri Ramampiarod03d6732015-10-16 08:52:18 +0200133 <version>[4.0,)</version>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700134 </dependency>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300135 <dependency>
136 <groupId>org.apache.hadoop</groupId>
137 <artifactId>hadoop-client</artifactId>
138 <type>jar</type>
139 <scope>compile</scope>
140 </dependency>
141 <dependency>
142 <groupId>net.java.dev.rome</groupId>
143 <artifactId>rome-fetcher</artifactId>
144 <version>1.0.0</version>
145 <type>jar</type>
146 <scope>compile</scope>
147 <exclusions>
148 <exclusion>
149 <artifactId>rome</artifactId>
150 <groupId>net.java.dev.rome</groupId>
151 </exclusion>
152 </exclusions>
153 </dependency>
154 <dependency>
155 <groupId>rome</groupId>
156 <artifactId>rome</artifactId>
157 <version>1.0.1-modified-01</version>
158 </dependency>
159 <dependency>
160 <groupId>org.apache.hyracks</groupId>
161 <artifactId>hyracks-hdfs-core</artifactId>
162 <version>${hyracks.version}</version>
163 </dependency>
164 <dependency>
165 <groupId>jdom</groupId>
166 <artifactId>jdom</artifactId>
167 <version>1.0</version>
168 </dependency>
169 <dependency>
170 <groupId>org.apache.asterix</groupId>
171 <artifactId>asterix-common</artifactId>
172 <version>0.8.8-SNAPSHOT</version>
173 </dependency>
174 <dependency>
175 <groupId>com.microsoft.windowsazure</groupId>
176 <artifactId>microsoft-windowsazure-api</artifactId>
177 <version>0.4.4</version>
178 </dependency>
179 <dependency>
180 <groupId>org.apache.hive</groupId>
181 <artifactId>hive-exec</artifactId>
182 <version>0.13.0</version>
183 </dependency>
184 <dependency>
185 <groupId>javax.jdo</groupId>
186 <artifactId>jdo2-api</artifactId>
187 <version>2.3-20090302111651</version>
188 </dependency>
189 </dependencies>
190</project>