source: SRUClient/tags/SRUClient-0.9.2/pom.xml @ 2998

Last change on this file since 2998 was 2998, checked in by oschonef, 11 years ago
  • tag version 0.9.2
  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 5.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4    <modelVersion>4.0.0</modelVersion>
5    <groupId>eu.clarin.sru</groupId>
6    <artifactId>sru-client</artifactId>
7    <version>0.9.2</version>
8    <name>SRU/CQL Client</name>
9    <description>A SRU/CQL client implementation conforming to SRU/CQL protocol version 1.1 and 1.2     </description>
10    <organization>
11        <name>IDS Mannheim</name>
12        <url>http://www.ids-mannheim.de/</url>
13    </organization>
14
15    <properties>
16        <!-- project settings -->
17        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18        <!-- plug-in settings -->
19        <maven.compiler.source>1.6</maven.compiler.source>
20        <maven.compiler.target>1.6</maven.compiler.target>
21        <!-- versions of common dependencies -->
22        <slf4j.version>1.7.2</slf4j.version>
23    </properties>
24
25    <dependencies>
26        <dependency>
27            <groupId>org.slf4j</groupId>
28            <artifactId>slf4j-api</artifactId>
29            <version>${slf4j.version}</version>
30        </dependency>
31
32
33        <dependency>
34            <groupId>org.apache.httpcomponents</groupId>
35            <artifactId>httpclient</artifactId>
36            <version>4.2.5</version>
37        </dependency>
38
39        <dependency>
40            <groupId>org.codehaus.woodstox</groupId>
41            <artifactId>woodstox-core-lgpl</artifactId>
42            <version>4.2.0</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
94            <plugin>
95                <groupId>org.apache.maven.plugins</groupId>
96                <artifactId>maven-dependency-plugin</artifactId>
97                <version>2.5.1</version>
98                <executions>
99                    <execution>
100                        <id>copy-dependencies</id>
101                        <phase>package</phase>
102                        <goals>
103                            <goal>copy-dependencies</goal>
104                        </goals>
105                        <configuration>
106                            <includeScope>compile</includeScope>
107                            <overWriteReleases>false</overWriteReleases>
108                            <overWriteSnapshots>false</overWriteSnapshots>
109                            <overWriteIfNewer>true</overWriteIfNewer>
110                        </configuration>
111                    </execution>
112                </executions>
113            </plugin>
114        </plugins>
115
116        <pluginManagement>
117            <plugins>
118                <!-- m2e settings -->
119                <plugin>
120                    <groupId>org.eclipse.m2e</groupId>
121                    <artifactId>lifecycle-mapping</artifactId>
122                    <version>1.0.0</version>
123                    <configuration>
124                        <lifecycleMappingMetadata>
125                            <pluginExecutions>
126                                <!-- copy-dependency plugin -->
127                                <pluginExecution>
128                                    <pluginExecutionFilter>
129                                        <groupId>org.apache.maven.plugins</groupId>
130                                        <artifactId>maven-dependency-plugin</artifactId>
131                                        <versionRange>[1.0.0,)</versionRange>
132                                        <goals>
133                                            <goal>copy-dependencies</goal>
134                                        </goals>
135                                    </pluginExecutionFilter>
136                                    <action>
137                                        <ignore />
138                                    </action>
139                                </pluginExecution>
140                            </pluginExecutions>
141                        </lifecycleMappingMetadata>
142                    </configuration>
143                </plugin>
144            </plugins>
145        </pluginManagement>
146    </build>
147
148</project>
Note: See TracBrowser for help on using the repository browser.