source: OAIProvider/trunk/pom.xml @ 1908

Last change on this file since 1908 was 1908, checked in by oschonef, 12 years ago
  • update slf4j dependency
File size: 1.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>OAIProvider</artifactId>
7  <packaging>jar</packaging>
8  <name>OAIProvider</name>
9  <version>0.1.1-SNAPSHOT</version>
10
11  <organization>
12    <name>Institut fÃŒr Deutsche Sprache</name>
13    <url>http://www.ids-mannheim.de/</url>
14  </organization>
15
16  <build>
17    <plugins>
18      <plugin>
19        <groupId>org.apache.maven.plugins</groupId>
20        <artifactId>maven-compiler-plugin</artifactId>
21        <version>2.1</version>
22        <configuration>
23          <source>${maven.compiler.source}</source>
24          <target>${maven.compiler.target}</target>
25        </configuration>
26      </plugin>
27    </plugins>
28  </build>
29
30  <dependencies>
31    <dependency>
32      <groupId>javax.servlet</groupId>
33      <artifactId>servlet-api</artifactId>
34      <version>2.5</version>
35      <type>jar</type>
36      <scope>provided</scope>
37    </dependency>
38
39    <dependency>
40      <groupId>commons-lang</groupId>
41      <artifactId>commons-lang</artifactId>
42      <version>2.5</version>
43      <type>jar</type>
44    </dependency>
45
46
47    <dependency>
48      <groupId>org.slf4j</groupId>
49      <artifactId>slf4j-api</artifactId>
50      <version>${slf4j.version}</version>
51    </dependency>
52
53    <dependency>
54      <groupId>junit</groupId>
55      <artifactId>junit</artifactId>
56      <version>3.8.1</version>
57      <scope>test</scope>
58    </dependency>
59  </dependencies>
60
61  <properties>
62    <!-- plug-in settings -->
63    <maven.compiler.source>1.6</maven.compiler.source>
64    <maven.compiler.target>1.6</maven.compiler.target>
65    <!-- dependency versions -->
66    <slf4j.version>1.6.4</slf4j.version>
67  </properties>
68
69</project>
Note: See TracBrowser for help on using the repository browser.