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

Last change on this file since 3026 was 3026, checked in by oschonef, 11 years ago
  • bump version
  • Property svn:eol-style set to native
  • Property svn:mime-type set to application/xml
File size: 2.8 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.2.0-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
52    <dependency>
53        <groupId>commons-lang</groupId>
54        <artifactId>commons-lang</artifactId>
55        <version>2.6</version>
56        <type>jar</type>
57        <scope>compile</scope>
58    </dependency>
59
60    <dependency>
61        <groupId>org.apache.httpcomponents</groupId>
62        <artifactId>httpclient</artifactId>
63        <version>4.2.5</version>
64    </dependency>
65
66    <dependency>
67        <groupId>org.codehaus.woodstox</groupId>
68        <artifactId>woodstox-core-lgpl</artifactId>
69        <version>4.2.0</version>
70    </dependency>
71
72    <dependency>
73        <groupId>net.java.dev.msv</groupId>
74        <artifactId>msv-core</artifactId>
75        <version>2010.2</version>
76        <scope>runtime</scope>
77    </dependency>
78
79    <dependency>
80        <groupId>joda-time</groupId>
81        <artifactId>joda-time</artifactId>
82        <version>2.0</version>
83    </dependency>
84
85    <dependency>
86      <groupId>org.slf4j</groupId>
87      <artifactId>slf4j-log4j12</artifactId>
88      <version>${slf4j.version}</version>
89      <scope>test</scope>
90    </dependency>
91  </dependencies>
92
93  <properties>
94    <!-- project settings -->
95    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
96    <!-- plug-in settings -->
97    <maven.compiler.source>1.6</maven.compiler.source>
98    <maven.compiler.target>1.6</maven.compiler.target>
99    <!-- versions of common dependencies -->
100    <slf4j.version>1.7.2</slf4j.version>
101  </properties>
102
103</project>
Note: See TracBrowser for help on using the repository browser.