Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 1 | <!-- |
| 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 Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [diff] [blame] | 19 | <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"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 24 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 25 | </parent> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 26 | |
| 27 | <licenses> |
| 28 | <license> |
| 29 | <name>Apache License, Version 2.0</name> |
| 30 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 31 | <distribution>repo</distribution> |
| 32 | <comments>A business-friendly OSS license</comments> |
| 33 | </license> |
| 34 | </licenses> |
| 35 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 36 | <artifactId>asterix-external-data</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 37 | |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 41 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 42 | <artifactId>maven-jaxb2-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 43 | <version>0.9.0</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 44 | <executions> |
| 45 | <execution> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 46 | <id>configuration</id> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 47 | <goals> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 48 | <goal>generate</goal> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 49 | </goals> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 50 | <configuration> |
| 51 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 52 | <schemaIncludes> |
| 53 | <include>library.xsd</include> |
| 54 | </schemaIncludes> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 55 | <generatePackage>org.apache.asterix.external.library</generatePackage> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 56 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 57 | </configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 58 | </execution> |
| 59 | </executions> |
| 60 | </plugin> |
| 61 | <plugin> |
| 62 | <groupId>org.apache.maven.plugins</groupId> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 63 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 64 | <version>2.4</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 65 | <configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 66 | <includes> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 67 | <include>**/*.class</include> |
| 68 | <include>**/*.txt</include> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 69 | </includes> |
| 70 | </configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 71 | <executions> |
| 72 | <execution> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 73 | <goals> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 74 | <goal>test-jar</goal> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 75 | </goals> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 76 | <phase>package</phase> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 77 | </execution> |
| 78 | </executions> |
| 79 | </plugin> |
| 80 | <plugin> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 81 | <artifactId>maven-assembly-plugin</artifactId> |
| 82 | <version>2.2-beta-5</version> |
| 83 | <executions> |
| 84 | <execution> |
| 85 | <configuration> |
| 86 | <descriptor>src/main/assembly/binary-assembly-libzip.xml</descriptor> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 87 | <finalName>testlib-zip</finalName> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 88 | </configuration> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 89 | <phase>package</phase> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 90 | <goals> |
| 91 | <goal>attached</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 95 | </plugin> |
| 96 | </plugins> |
| 97 | </build> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 98 | <dependencies> |
| 99 | <dependency> |
| 100 | <groupId>javax.servlet</groupId> |
| 101 | <artifactId>servlet-api</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 102 | <type>jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 105 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 106 | <artifactId>asterix-om</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 107 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 108 | <type>jar</type> |
| 109 | <scope>compile</scope> |
| 110 | </dependency> |
| 111 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 112 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 113 | <artifactId>asterix-runtime</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 114 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 115 | <type>jar</type> |
| 116 | <scope>compile</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 119 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 120 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 121 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 122 | <type>jar</type> |
| 123 | <scope>compile</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 126 | <groupId>org.apache.hyracks</groupId> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 127 | <artifactId>algebricks-compiler</artifactId> |
| 128 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 129 | <dependency> |
| 130 | <groupId>com.kenai.nbpwr</groupId> |
| 131 | <artifactId>org-apache-commons-io</artifactId> |
| 132 | <version>1.3.1-201002241208</version> |
| 133 | <scope>test</scope> |
| 134 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 135 | <dependency> |
| 136 | <groupId>org.twitter4j</groupId> |
| 137 | <artifactId>twitter4j-core</artifactId> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 138 | <version>[3.0,)</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 139 | </dependency> |
| 140 | <dependency> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 141 | <groupId>org.twitter4j</groupId> |
| 142 | <artifactId>twitter4j-stream</artifactId> |
| 143 | <version>4.0.2</version> |
| 144 | </dependency> |
| 145 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 146 | <groupId>org.apache.hadoop</groupId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 147 | <artifactId>hadoop-client</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 148 | <type>jar</type> |
| 149 | <scope>compile</scope> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>net.java.dev.rome</groupId> |
| 153 | <artifactId>rome-fetcher</artifactId> |
| 154 | <version>1.0.0</version> |
| 155 | <type>jar</type> |
| 156 | <scope>compile</scope> |
Vinayak Borkar | 3a43223 | 2013-05-31 11:47:58 -0700 | [diff] [blame] | 157 | <exclusions> |
| 158 | <exclusion> |
| 159 | <artifactId>rome</artifactId> |
| 160 | <groupId>net.java.dev.rome</groupId> |
| 161 | </exclusion> |
| 162 | </exclusions> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>rome</groupId> |
| 166 | <artifactId>rome</artifactId> |
| 167 | <version>1.0.1-modified-01</version> |
| 168 | </dependency> |
| 169 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 170 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 209adfb | 2013-06-03 14:21:22 -0700 | [diff] [blame] | 171 | <artifactId>hyracks-hdfs-core</artifactId> |
| 172 | <version>${hyracks.version}</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 173 | </dependency> |
| 174 | <dependency> |
| 175 | <groupId>jdom</groupId> |
| 176 | <artifactId>jdom</artifactId> |
| 177 | <version>1.0</version> |
| 178 | </dependency> |
zheilbron | 553817e | 2013-06-24 15:08:19 -0700 | [diff] [blame] | 179 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 180 | <groupId>org.apache.asterix</groupId> |
zheilbron | 553817e | 2013-06-24 15:08:19 -0700 | [diff] [blame] | 181 | <artifactId>asterix-common</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 182 | <version>0.8.7-SNAPSHOT</version> |
zheilbron | 553817e | 2013-06-24 15:08:19 -0700 | [diff] [blame] | 183 | </dependency> |
zheilbron | cb98388 | 2013-08-14 17:50:27 -0700 | [diff] [blame] | 184 | <dependency> |
| 185 | <groupId>com.microsoft.windowsazure</groupId> |
| 186 | <artifactId>microsoft-windowsazure-api</artifactId> |
| 187 | <version>0.4.4</version> |
| 188 | </dependency> |
Abdullah Alamoudi | d905773 | 2014-06-12 13:38:27 -0700 | [diff] [blame] | 189 | <dependency> |
| 190 | <groupId>org.apache.hive</groupId> |
| 191 | <artifactId>hive-exec</artifactId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 192 | <version>0.13.0</version> |
Abdullah Alamoudi | d905773 | 2014-06-12 13:38:27 -0700 | [diff] [blame] | 193 | </dependency> |
| 194 | <dependency> |
| 195 | <groupId>javax.jdo</groupId> |
| 196 | <artifactId>jdo2-api</artifactId> |
| 197 | <version>2.3-20090302111651</version> |
| 198 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 199 | </dependencies> |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame^] | 200 | </project> |