initial sourceforge import
[lwes-contrib-hive-serde.git] / pom.xml
blob424e5a2e5e1fd7ac7117d83c8f50da920351cba3
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <groupId>org.openx.data.hive</groupId>
5     <artifactId>JournalSerDe</artifactId>
6     <packaging>jar</packaging>
7     <version>1.0.1</version>
8     <name>Open Source SerDe</name>
9     <url>http://maven.apache.org</url>
10     <build>
11         <plugins>
12             <plugin>
13                 <groupId>org.apache.maven.plugins</groupId>
14                 <artifactId>maven-compiler-plugin</artifactId>
15                 <version>2.0.2</version>
16                 <configuration>
17                     <source>1.6</source>
18                     <target>1.6</target>
19                 </configuration>
20             </plugin>
21         </plugins>
22     </build>
23     <dependencies>
24         <dependency>
25             <groupId>junit</groupId>
26             <artifactId>junit</artifactId>
27             <version>3.8.1</version>
28             <scope>test</scope>
29         </dependency>
30         <dependency>
31             <groupId>hadoop</groupId>
32             <artifactId>hadoop-core</artifactId>
33             <version>0.19.2</version>
34         </dependency>
35         <dependency>
36             <groupId>commons-logging</groupId>
37             <artifactId>commons-logging</artifactId>
38             <version>1.1</version>
39             <exclusions>
40                 <exclusion>
41                     <artifactId>avalon-framework</artifactId>
42                     <groupId>avalon-framework</groupId>
43                 </exclusion>
44                 <exclusion>
45                     <artifactId>servlet-api</artifactId>
46                     <groupId>javax.servlet</groupId>
47                 </exclusion>
48                 <exclusion>
49                     <artifactId>logkit</artifactId>
50                     <groupId>logkit</groupId>
51                 </exclusion>
52             </exclusions>
53         </dependency>
54         <dependency>
55             <groupId>org.lwes</groupId>
56             <artifactId>lwes-java</artifactId>
57             <version>0.2.0</version>
58         </dependency>
59         <dependency>
60             <groupId>org.lwes</groupId>
61             <artifactId>journaller-java</artifactId>
62             <version>0.0.6</version>
63         </dependency>
64         <dependency>
65             <groupId>hive</groupId>
66             <artifactId>hive-serde</artifactId>
67             <version>0.6.0_trunk</version>
68         </dependency>
69          <dependency>
70             <groupId>hive</groupId>
71             <artifactId>hive-exec</artifactId>
72             <version>0.6.0_trunk</version>
73         </dependency>
74     </dependencies>
75 </project>