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. ! --> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 10 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 11 | 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] | 12 | <modelVersion>4.0.0</modelVersion> |
| 13 | <parent> |
| 14 | <artifactId>asterix</artifactId> |
| 15 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 16 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 17 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 18 | <artifactId>asterix-external-data</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 19 | |
| 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <groupId>org.apache.maven.plugins</groupId> |
| 24 | <artifactId>maven-compiler-plugin</artifactId> |
| 25 | <version>2.0.2</version> |
| 26 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 27 | <source>1.7</source> |
| 28 | <target>1.7</target> |
| 29 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 30 | </configuration> |
| 31 | </plugin> |
| 32 | <plugin> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 33 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 34 | <artifactId>maven-jaxb2-plugin</artifactId> |
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> |
| 55 | <version>2.2</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> |
| 96 | <groupId>junit</groupId> |
| 97 | <artifactId>junit</artifactId> |
| 98 | <version>4.8.1</version> |
| 99 | <scope>test</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 102 | <groupId>edu.uci.ics.asterix</groupId> |
| 103 | <artifactId>asterix-om</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 104 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 105 | <type>jar</type> |
| 106 | <scope>compile</scope> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>edu.uci.ics.asterix</groupId> |
| 110 | <artifactId>asterix-runtime</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 111 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 112 | <type>jar</type> |
| 113 | <scope>compile</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 116 | <groupId>edu.uci.ics.asterix</groupId> |
| 117 | <artifactId>asterix-metadata</artifactId> |
ramangrover29 | db035f9 | 2013-06-06 18:30:10 -0700 | [diff] [blame] | 118 | <version>0.8.1-SNAPSHOT</version> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 119 | <type>jar</type> |
| 120 | <scope>compile</scope> |
| 121 | </dependency> |
| 122 | <dependency> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 123 | <groupId>edu.uci.ics.hyracks</groupId> |
| 124 | <artifactId>algebricks-compiler</artifactId> |
| 125 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 126 | <dependency> |
| 127 | <groupId>com.kenai.nbpwr</groupId> |
| 128 | <artifactId>org-apache-commons-io</artifactId> |
| 129 | <version>1.3.1-201002241208</version> |
| 130 | <scope>test</scope> |
| 131 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 132 | <dependency> |
| 133 | <groupId>org.twitter4j</groupId> |
| 134 | <artifactId>twitter4j-core</artifactId> |
| 135 | <version>2.2.3</version> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.apache.hadoop</groupId> |
| 139 | <artifactId>hadoop-core</artifactId> |
| 140 | <version>0.20.2</version> |
| 141 | <type>jar</type> |
| 142 | <scope>compile</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>net.java.dev.rome</groupId> |
| 146 | <artifactId>rome-fetcher</artifactId> |
| 147 | <version>1.0.0</version> |
| 148 | <type>jar</type> |
| 149 | <scope>compile</scope> |
Vinayak Borkar | 3a43223 | 2013-05-31 11:47:58 -0700 | [diff] [blame] | 150 | <exclusions> |
| 151 | <exclusion> |
| 152 | <artifactId>rome</artifactId> |
| 153 | <groupId>net.java.dev.rome</groupId> |
| 154 | </exclusion> |
| 155 | </exclusions> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>rome</groupId> |
| 159 | <artifactId>rome</artifactId> |
| 160 | <version>1.0.1-modified-01</version> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 209adfb | 2013-06-03 14:21:22 -0700 | [diff] [blame] | 164 | <artifactId>hyracks-hdfs-core</artifactId> |
| 165 | <version>${hyracks.version}</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>jdom</groupId> |
| 169 | <artifactId>jdom</artifactId> |
| 170 | <version>1.0</version> |
| 171 | </dependency> |
zheilbron | 553817e | 2013-06-24 15:08:19 -0700 | [diff] [blame] | 172 | <dependency> |
| 173 | <groupId>edu.uci.ics.asterix</groupId> |
| 174 | <artifactId>asterix-common</artifactId> |
| 175 | <version>0.8.1-SNAPSHOT</version> |
| 176 | </dependency> |
zheilbron | cb98388 | 2013-08-14 17:50:27 -0700 | [diff] [blame] | 177 | <dependency> |
| 178 | <groupId>com.microsoft.windowsazure</groupId> |
| 179 | <artifactId>microsoft-windowsazure-api</artifactId> |
| 180 | <version>0.4.4</version> |
| 181 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 182 | </dependencies> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 183 | </project> |