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