blob: f8d5ea2bc1f21dd32fd926bad289a77b27d1b9d6 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
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 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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">
vinayakb38b7ca42012-03-05 05:44:15 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070020 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000022 <artifactId>asterix-external-data</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000023
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>
vinayakb5ee049d2013-04-06 21:21:29 +000031 <source>1.7</source>
32 <target>1.7</target>
33 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000034 </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>
vinayakb5ee049d2013-04-06 21:21:29 +000068 <!-- doesn't work from m2eclipse, currently <additionalClasspathElements>
69 <additionalClasspathElement>${basedir}/src/main/resources</additionalClasspathElement>
70 </additionalClasspathElements> -->
vinayakb38b7ca42012-03-05 05:44:15 +000071 <forkMode>pertest</forkMode>
vinayakb5ee049d2013-04-06 21:21:29 +000072 <argLine>-enableassertions -Xmx${test.heap.size}m
73 -Dfile.encoding=UTF-8
vinayakb38b7ca42012-03-05 05:44:15 +000074 -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>
vinayakb38b7ca42012-03-05 05:44:15 +000088 <type>jar</type>
vinayakb38b7ca42012-03-05 05:44:15 +000089 </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>
vinayakb38b7ca42012-03-05 05:44:15 +000097 <groupId>edu.uci.ics.asterix</groupId>
98 <artifactId>asterix-om</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -070099 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000100 <type>jar</type>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>edu.uci.ics.asterix</groupId>
105 <artifactId>asterix-runtime</artifactId>
Vinayak Borkarb27deb22013-06-06 00:31:52 -0700106 <version>0.8.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000107 <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>
vinayakb5ee049d2013-04-06 21:21:29 +0000116 <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 Borkar3a432232013-05-31 11:47:58 -0700134 <exclusions>
135 <exclusion>
136 <artifactId>rome</artifactId>
137 <groupId>net.java.dev.rome</groupId>
138 </exclusion>
139 </exclusions>
vinayakb5ee049d2013-04-06 21:21:29 +0000140 </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>
buyingyi209adfb2013-06-03 14:21:22 -0700148 <artifactId>hyracks-hdfs-core</artifactId>
149 <version>${hyracks.version}</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000150 </dependency>
151 <dependency>
152 <groupId>jdom</groupId>
153 <artifactId>jdom</artifactId>
154 <version>1.0</version>
155 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000156 </dependencies>
157
158</project>