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

Last change on this file since 1128 was 1128, checked in by oschonef, 13 years ago
  • initial import of OAI harvester (... now for real ;)
  • Property svn:eol-style set to native
  • Property svn:mime-type set to application/xml
File size: 3.6 KB
Line 
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/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.0.1-SNAPSHOT</version>
8  <packaging>jar</packaging>
9  <name>OAIHarvester</name>
10
11  <repositories>
12    <repository>
13      <id>repository.jboss-public</id>
14      <name>JBoss Repository</name>
15      <url>https://repository.jboss.org/nexus/content/groups/public/</url>
16    </repository>
17
18    <repository>
19      <id>repository.java-net</id>
20      <name>Java.net Repository</name>
21      <url>http://download.java.net/maven/2/</url>
22    </repository>
23  </repositories>
24
25  <build>
26    <resources>
27      <resource>
28        <directory>src/main/resources</directory>
29      </resource>
30    </resources>
31
32    <plugins>
33      <plugin>
34        <groupId>org.apache.maven.plugins</groupId>
35        <artifactId>maven-compiler-plugin</artifactId>
36        <version>2.3.2</version>
37        <configuration>
38          <source>${maven.compiler.source}</source>
39          <target>${maven.compiler.target}</target>
40        </configuration>
41      </plugin>
42    </plugins>
43  </build>
44
45  <dependencies>
46    <dependency>
47      <groupId>org.slf4j</groupId>
48      <artifactId>slf4j-api</artifactId>
49      <version>${slf4j.version}</version>
50    </dependency>
51    <dependency>
52      <groupId>org.slf4j</groupId>
53      <artifactId>slf4j-jdk14</artifactId>
54      <version>${slf4j.version}</version>
55      <scope>runtime</scope>
56    </dependency>
57    <dependency>
58        <groupId>commons-lang</groupId>
59        <artifactId>commons-lang</artifactId>
60        <version>2.6</version>
61        <type>jar</type>
62        <scope>compile</scope>
63    </dependency>
64    <dependency>
65        <groupId>org.apache.httpcomponents</groupId>
66        <artifactId>httpclient</artifactId>
67        <version>4.0.3</version>
68        <type>jar</type>
69        <scope>compile</scope>
70    </dependency>
71    <dependency>
72        <groupId>org.codehaus.woodstox</groupId>
73        <artifactId>woodstox-core-lgpl</artifactId>
74        <version>4.1.1</version>
75        <type>jar</type>
76        <scope>compile</scope>
77    </dependency>
78    <dependency>
79        <groupId>net.java.dev.msv</groupId>
80        <artifactId>msv-core</artifactId>
81        <version>2010.2</version>
82        <scope>runtime</scope>
83    </dependency>
84    <dependency>
85        <groupId>joda-time</groupId>
86        <artifactId>joda-time</artifactId>
87        <version>1.6.2</version>
88        <type>jar</type>
89        <scope>compile</scope>
90    </dependency>
91  </dependencies>
92
93  <dependencyManagement>
94    <dependencies>
95      <dependency>
96        <groupId>org.slf4j</groupId>
97        <artifactId>slf4j-api</artifactId>
98        <version>${slf4j.version}</version>
99      </dependency>
100      <dependency>
101        <groupId>org.slf4j</groupId>
102        <artifactId>slf4j-jdk14</artifactId>
103        <version>${slf4j.version}</version>
104      </dependency>
105      <dependency>
106        <groupId>commons-codec</groupId>
107        <artifactId>commons-codec</artifactId>
108        <version>${commons-codec.version}</version>
109      </dependency>
110    </dependencies>
111  </dependencyManagement>
112
113  <properties>
114    <!-- project settings -->
115    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
116    <!-- plug-in settings -->
117    <maven.compiler.source>1.6</maven.compiler.source>
118    <maven.compiler.target>1.6</maven.compiler.target>
119    <!-- versions of common dependencies -->
120    <slf4j.version>1.6.1</slf4j.version>
121    <commons-codec.version>1.4</commons-codec.version>
122  </properties>
123
124</project>
Note: See TracBrowser for help on using the repository browser.