blob: 5917f6bca3a2bbc00634e5e09241ad170b6043e7 [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>
ramangrover29566b3a92013-05-28 09:07:10 -0700111 <groupId>edu.uci.ics.asterix</groupId>
112 <artifactId>asterix-metadata</artifactId>
ramangrover29db035f92013-06-06 18:30:10 -0700113 <version>0.8.1-SNAPSHOT</version>
ramangrover29566b3a92013-05-28 09:07:10 -0700114 <type>jar</type>
115 <scope>compile</scope>
116 </dependency>
117 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000118 <groupId>com.kenai.nbpwr</groupId>
119 <artifactId>org-apache-commons-io</artifactId>
120 <version>1.3.1-201002241208</version>
121 <scope>test</scope>
122 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +0000123 <dependency>
124 <groupId>org.twitter4j</groupId>
125 <artifactId>twitter4j-core</artifactId>
126 <version>2.2.3</version>
127 </dependency>
128 <dependency>
129 <groupId>org.apache.hadoop</groupId>
130 <artifactId>hadoop-core</artifactId>
131 <version>0.20.2</version>
132 <type>jar</type>
133 <scope>compile</scope>
134 </dependency>
135 <dependency>
136 <groupId>net.java.dev.rome</groupId>
137 <artifactId>rome-fetcher</artifactId>
138 <version>1.0.0</version>
139 <type>jar</type>
140 <scope>compile</scope>
Vinayak Borkar3a432232013-05-31 11:47:58 -0700141 <exclusions>
142 <exclusion>
143 <artifactId>rome</artifactId>
144 <groupId>net.java.dev.rome</groupId>
145 </exclusion>
146 </exclusions>
vinayakb5ee049d2013-04-06 21:21:29 +0000147 </dependency>
148 <dependency>
149 <groupId>rome</groupId>
150 <artifactId>rome</artifactId>
151 <version>1.0.1-modified-01</version>
152 </dependency>
153 <dependency>
154 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi209adfb2013-06-03 14:21:22 -0700155 <artifactId>hyracks-hdfs-core</artifactId>
156 <version>${hyracks.version}</version>
vinayakb5ee049d2013-04-06 21:21:29 +0000157 </dependency>
158 <dependency>
159 <groupId>jdom</groupId>
160 <artifactId>jdom</artifactId>
161 <version>1.0</version>
162 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000163 </dependencies>
164
165</project>