source: SRUClient/trunk/pom.xml @ 1963

Last change on this file since 1963 was 1963, checked in by oschonef, 12 years ago
  • import sources
  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 2.2 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        <groupId>eu.clarin.sru</groupId>
5        <artifactId>sru-client</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7        <name>SRU/CQL Client</name>
8        <description>A SRU/CQL client implementation conforming to SRU/CQL protocol version 1.1 and 1.2 </description>
9        <organization>
10                <name>IDS Mannheim</name>
11                <url>http://www.ids-mannheim.de/</url>
12        </organization>
13
14        <properties>
15                <!-- project settings -->
16                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17                <!-- plug-in settings -->
18                <maven.compiler.source>1.6</maven.compiler.source>
19                <maven.compiler.target>1.6</maven.compiler.target>
20                <!-- versions of common dependencies -->
21                <slf4j.version>1.6.4</slf4j.version>
22        </properties>
23
24        <dependencies>
25                <dependency>
26                        <groupId>org.slf4j</groupId>
27                        <artifactId>slf4j-api</artifactId>
28                        <version>${slf4j.version}</version>
29                </dependency>
30
31                <dependency>
32                        <groupId>commons-lang</groupId>
33                        <artifactId>commons-lang</artifactId>
34                        <version>2.6</version>
35                        <type>jar</type>
36                </dependency>
37
38                <dependency>
39                        <groupId>org.apache.httpcomponents</groupId>
40                        <artifactId>httpclient</artifactId>
41                        <version>4.1.3</version>
42                </dependency>
43
44                <dependency>
45                        <groupId>org.codehaus.woodstox</groupId>
46                        <artifactId>woodstox-core-lgpl</artifactId>
47                        <version>4.1.3</version>
48                </dependency>
49
50                <dependency>
51                        <groupId>joda-time</groupId>
52                        <artifactId>joda-time</artifactId>
53                        <version>2.0</version>
54                </dependency>
55
56                <dependency>
57                        <groupId>org.slf4j</groupId>
58                        <!--
59                        <artifactId>slf4j-jdk14</artifactId>
60                        -->
61            <artifactId>slf4j-log4j12</artifactId>
62                        <version>${slf4j.version}</version>
63                </dependency>
64        </dependencies>
65
66        <build>
67                <plugins>
68                        <plugin>
69                                <groupId>org.apache.maven.plugins</groupId>
70                                <artifactId>maven-compiler-plugin</artifactId>
71                                <version>2.1</version>
72                                <configuration>
73                                        <source>${maven.compiler.source}</source>
74                                        <target>${maven.compiler.target}</target>
75                                </configuration>
76                        </plugin>
77                </plugins>
78        </build>
79
80</project>
Note: See TracBrowser for help on using the repository browser.