source: SRUCQIBridge/pom.xml @ 2723

Last change on this file since 2723 was 2723, checked in by akislev, 11 years ago

updated sru server dependency to version 1.4.2

File size: 2.5 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    <artifactId>sru-cqibridge</artifactId>
5    <version>1.1</version>
6    <packaging>war</packaging>
7
8    <name>SRU-CQIBridge</name>
9    <url>http://weblicht.sfs.uni-tuebingen.de/</url>
10
11    <properties>
12        <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
13        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14    </properties>
15   
16    <repositories>
17        <repository>
18            <id>clarin</id>
19            <url>http://catalog.clarin.eu/ds/nexus/content/repositories/Clarin/</url>
20        </repository>
21    </repositories>
22
23    <dependencies>
24        <dependency>
25            <groupId>eu.clarin.sru</groupId>
26            <artifactId>sru-server</artifactId>
27            <version>1.4.2</version>
28        </dependency>
29        <dependency>
30            <groupId>eu.clarin.cqi</groupId>
31            <artifactId>cqi-client</artifactId>
32            <version>1.0</version>
33        </dependency>
34        <dependency>
35            <groupId>org.slf4j</groupId>
36            <artifactId>slf4j-simple</artifactId>
37            <version>1.6.4</version>
38        </dependency>
39    </dependencies>
40
41    <build>
42        <plugins>
43            <plugin>
44                <groupId>org.apache.maven.plugins</groupId>
45                <artifactId>maven-compiler-plugin</artifactId>
46                <version>2.3.2</version>
47                <configuration>
48                    <source>1.6</source>
49                    <target>1.6</target>
50                    <compilerArguments>
51                        <endorseddirs>${endorsed.dir}</endorseddirs>
52                    </compilerArguments>
53                </configuration>
54            </plugin>
55            <plugin>
56                <groupId>org.apache.maven.plugins</groupId>
57                <artifactId>maven-war-plugin</artifactId>
58                <version>2.1.1</version>
59                <configuration>
60                    <failOnMissingWebXml>false</failOnMissingWebXml>
61                </configuration>
62            </plugin>
63        </plugins>
64    </build>
65    <groupId>eu.clarin.sru.cqibridge</groupId>
66    <licenses>
67        <license>
68            <name>GNU General Public License, Version 3</name>
69            <url>http://www.gnu.org/licenses/</url>
70        </license>
71    </licenses>
72</project>
Note: See TracBrowser for help on using the repository browser.