source: OAIHarvester/trunk/OAIHarvester/pom.xml @ 5458

Last change on this file since 5458 was 5458, checked in by Oliver Schonefeld, 10 years ago
  • clean up pom.xml
  • update some dependencies
  • update to Apache Http Client 4.3.x
  • Property svn:eol-style set to native
  • Property svn:mime-type set to application/xml
File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?><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/xsd/maven-4.0.0.xsd">
3        <modelVersion>4.0.0</modelVersion>
4
5        <groupId>eu.clarin.cmdi</groupId>
6        <artifactId>OAIHarvester</artifactId>
7        <version>0.3.0-SNAPSHOT</version>
8        <packaging>jar</packaging>
9        <name>OAIHarvester</name>
10
11    <properties>
12        <!-- project settings -->
13        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14        <!-- plug-in settings -->
15        <maven.compiler.source>1.6</maven.compiler.source>
16        <maven.compiler.target>1.6</maven.compiler.target>
17        <!-- versions of common dependencies -->
18        <slf4j.version>1.7.7</slf4j.version>
19    </properties>
20
21    <dependencies>
22        <dependency>
23            <groupId>org.slf4j</groupId>
24            <artifactId>slf4j-api</artifactId>
25            <version>${slf4j.version}</version>
26        </dependency>
27
28        <dependency>
29            <groupId>org.apache.httpcomponents</groupId>
30            <artifactId>httpclient</artifactId>
31            <version>4.3.4</version>
32        </dependency>
33
34        <dependency>
35            <groupId>org.codehaus.woodstox</groupId>
36            <artifactId>woodstox-core-lgpl</artifactId>
37            <version>4.4.0</version>
38        </dependency>
39
40        <!--
41        <dependency>
42            <groupId>net.java.dev.msv</groupId>
43            <artifactId>msv-core</artifactId>
44            <version>2010.2</version>
45            <scope>runtime</scope>
46        </dependency>
47        -->
48
49        <dependency>
50            <groupId>joda-time</groupId>
51            <artifactId>joda-time</artifactId>
52            <version>2.3</version>
53        </dependency>
54
55        <dependency>
56            <groupId>org.slf4j</groupId>
57            <artifactId>slf4j-log4j12</artifactId>
58            <version>${slf4j.version}</version>
59            <scope>test</scope>
60        </dependency>
61    </dependencies>
62
63        <build>
64                <plugins>
65                        <plugin>
66                                <groupId>org.apache.maven.plugins</groupId>
67                                <artifactId>maven-compiler-plugin</artifactId>
68                                <version>2.3.2</version>
69                                <configuration>
70                                        <source>${maven.compiler.source}</source>
71                                        <target>${maven.compiler.target}</target>
72                                </configuration>
73                        </plugin>
74                </plugins>
75        </build>
76
77</project>
Note: See TracBrowser for help on using the repository browser.