Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 15 | <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] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>asterix</artifactId> |
| 19 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 20 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 22 | <artifactId>asterix-external-data</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 23 | |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.maven.plugins</groupId> |
| 28 | <artifactId>maven-compiler-plugin</artifactId> |
| 29 | <version>2.0.2</version> |
| 30 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 31 | <source>1.7</source> |
| 32 | <target>1.7</target> |
| 33 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 34 | </configuration> |
| 35 | </plugin> |
| 36 | <plugin> |
| 37 | <groupId>org.codehaus.mojo</groupId> |
| 38 | <artifactId>appassembler-maven-plugin</artifactId> |
| 39 | <version>1.0</version> |
| 40 | <executions> |
| 41 | <execution> |
| 42 | <configuration> |
| 43 | <programs> |
| 44 | <program> |
| 45 | <mainClass>edu.uci.ics.asterix.drivers.AsterixWebServer</mainClass> |
| 46 | <name>asterix-web</name> |
| 47 | </program> |
| 48 | <program> |
| 49 | <mainClass>edu.uci.ics.asterix.drivers.AsterixClientDriver</mainClass> |
| 50 | <name>asterix-cmd</name> |
| 51 | </program> |
| 52 | </programs> |
| 53 | <repositoryLayout>flat</repositoryLayout> |
| 54 | <repositoryName>lib</repositoryName> |
| 55 | </configuration> |
| 56 | <phase>package</phase> |
| 57 | <goals> |
| 58 | <goal>assemble</goal> |
| 59 | </goals> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-surefire-plugin</artifactId> |
| 66 | <version>2.7.2</version> |
| 67 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 68 | <!-- doesn't work from m2eclipse, currently <additionalClasspathElements> |
| 69 | <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement> |
| 70 | </additionalClasspathElements> --> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 71 | <forkMode>pertest</forkMode> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 72 | <argLine>-enableassertions -Xmx${test.heap.size}m |
| 73 | -Dfile.encoding=UTF-8 |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 74 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 75 | <includes> |
| 76 | <include>**/*TestSuite.java</include> |
| 77 | <include>**/*Test.java</include> |
| 78 | </includes> |
| 79 | </configuration> |
| 80 | </plugin> |
| 81 | </plugins> |
| 82 | </build> |
| 83 | |
| 84 | <dependencies> |
| 85 | <dependency> |
| 86 | <groupId>javax.servlet</groupId> |
| 87 | <artifactId>servlet-api</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 88 | <type>jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>junit</groupId> |
| 92 | <artifactId>junit</artifactId> |
| 93 | <version>4.8.1</version> |
| 94 | <scope>test</scope> |
| 95 | </dependency> |
| 96 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 97 | <groupId>edu.uci.ics.asterix</groupId> |
| 98 | <artifactId>asterix-om</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 99 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 100 | <type>jar</type> |
| 101 | <scope>compile</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>edu.uci.ics.asterix</groupId> |
| 105 | <artifactId>asterix-runtime</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 106 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 107 | <type>jar</type> |
| 108 | <scope>compile</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>com.kenai.nbpwr</groupId> |
| 112 | <artifactId>org-apache-commons-io</artifactId> |
| 113 | <version>1.3.1-201002241208</version> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 116 | <dependency> |
| 117 | <groupId>org.twitter4j</groupId> |
| 118 | <artifactId>twitter4j-core</artifactId> |
| 119 | <version>2.2.3</version> |
| 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>org.apache.hadoop</groupId> |
| 123 | <artifactId>hadoop-core</artifactId> |
| 124 | <version>0.20.2</version> |
| 125 | <type>jar</type> |
| 126 | <scope>compile</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>net.java.dev.rome</groupId> |
| 130 | <artifactId>rome-fetcher</artifactId> |
| 131 | <version>1.0.0</version> |
| 132 | <type>jar</type> |
| 133 | <scope>compile</scope> |
Vinayak Borkar | 3a43223 | 2013-05-31 11:47:58 -0700 | [diff] [blame] | 134 | <exclusions> |
| 135 | <exclusion> |
| 136 | <artifactId>rome</artifactId> |
| 137 | <groupId>net.java.dev.rome</groupId> |
| 138 | </exclusion> |
| 139 | </exclusions> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>rome</groupId> |
| 143 | <artifactId>rome</artifactId> |
| 144 | <version>1.0.1-modified-01</version> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 209adfb | 2013-06-03 14:21:22 -0700 | [diff] [blame] | 148 | <artifactId>hyracks-hdfs-core</artifactId> |
| 149 | <version>${hyracks.version}</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>jdom</groupId> |
| 153 | <artifactId>jdom</artifactId> |
| 154 | <version>1.0</version> |
| 155 | </dependency> |
Abdullah Alamoudi | 679a7be | 2013-08-12 00:19:11 +0300 | [diff] [blame^] | 156 | <dependency> |
| 157 | <groupId>org.apache.hive</groupId> |
| 158 | <artifactId>hive-exec</artifactId> |
| 159 | <version>0.11.0</version> |
| 160 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 161 | </dependencies> |
| 162 | |
| 163 | </project> |