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