source: SRUClient/trunk/pom.xml @ 6946

Last change on this file since 6946 was 6946, checked in by Oliver Schonefeld, 8 years ago
  • update pom
  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 3.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5    <modelVersion>4.0.0</modelVersion>
6    <groupId>eu.clarin.sru</groupId>
7    <artifactId>sru-client</artifactId>
8    <version>0.10.0-SNAPSHOT</version>
9    <name>SRU/CQL Client</name>
10    <description>A SRU/CQL client implementation conforming to SRU/CQL protocol version 1.1, 1.2 and (partially) 2.0</description>
11    <organization>
12        <name>IDS Mannheim</name>
13        <url>http://www.ids-mannheim.de/</url>
14    </organization>
15
16    <properties>
17        <!-- project settings -->
18        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19        <!-- plug-in settings -->
20        <maven.compiler.source>1.6</maven.compiler.source>
21        <maven.compiler.target>1.6</maven.compiler.target>
22        <!-- versions of common dependencies -->
23        <slf4j.version>1.7.12</slf4j.version>
24    </properties>
25
26    <dependencies>
27        <dependency>
28            <groupId>org.slf4j</groupId>
29            <artifactId>slf4j-api</artifactId>
30            <version>${slf4j.version}</version>
31        </dependency>
32
33        <dependency>
34            <groupId>org.apache.httpcomponents</groupId>
35            <artifactId>httpclient</artifactId>
36            <version>4.3.6</version>
37        </dependency>
38
39        <dependency>
40            <groupId>org.codehaus.woodstox</groupId>
41            <artifactId>woodstox-core-lgpl</artifactId>
42            <version>4.4.1</version>
43        </dependency>
44
45        <dependency>
46            <groupId>org.slf4j</groupId>
47            <!-- <artifactId>slf4j-jdk14</artifactId> -->
48            <artifactId>slf4j-log4j12</artifactId>
49            <version>${slf4j.version}</version>
50            <scope>test</scope>
51        </dependency>
52    </dependencies>
53
54    <build>
55        <plugins>
56            <plugin>
57                <groupId>org.apache.maven.plugins</groupId>
58                <artifactId>maven-compiler-plugin</artifactId>
59                <version>2.1</version>
60                <configuration>
61                    <source>${maven.compiler.source}</source>
62                    <target>${maven.compiler.target}</target>
63                </configuration>
64            </plugin>
65
66            <plugin>
67                <groupId>org.apache.maven.plugins</groupId>
68                <artifactId>maven-javadoc-plugin</artifactId>
69                <version>2.8.1</version>
70                <executions>
71                    <execution>
72                        <id>attach-javadoc</id>
73                        <goals>
74                            <goal>jar</goal>
75                        </goals>
76                    </execution>
77                </executions>
78            </plugin>
79
80            <plugin>
81                <groupId>org.apache.maven.plugins</groupId>
82                <artifactId>maven-source-plugin</artifactId>
83                <version>2.2</version>
84                <executions>
85                    <execution>
86                        <id>attach-source</id>
87                        <goals>
88                            <goal>jar-no-fork</goal>
89                        </goals>
90                    </execution>
91                </executions>
92            </plugin>
93        </plugins>
94    </build>
95
96</project>
Note: See TracBrowser for help on using the repository browser.