source: SRUCQIBridge/pom.xml

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

updated dependencies

File size: 2.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    <artifactId>sru-cqibridge</artifactId>
5    <version>1.2</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.5.0</version>
28        </dependency>
29        <dependency>
30            <groupId>eu.clarin.cqi</groupId>
31            <artifactId>cqi-client</artifactId>
32            <version>1.2</version>
33        </dependency>
34        <dependency>
35            <groupId>org.slf4j</groupId>
36            <artifactId>slf4j-simple</artifactId>
37            <version>1.6.4</version>
38        </dependency>
39        <dependency>
40            <groupId>eu.clarin.sru.fcs</groupId>
41            <artifactId>fcs-simple-endpoint</artifactId>
42            <version>1.1.0</version>
43        </dependency>
44        <dependency>
45            <groupId>javax.servlet</groupId>
46            <artifactId>servlet-api</artifactId>
47            <version>2.5</version>
48        </dependency>
49    </dependencies>
50
51    <build>
52        <plugins>
53            <plugin>
54                <groupId>org.apache.maven.plugins</groupId>
55                <artifactId>maven-compiler-plugin</artifactId>
56                <version>2.3.2</version>
57                <configuration>
58                    <source>1.6</source>
59                    <target>1.6</target>
60                    <compilerArguments>
61                        <endorseddirs>${endorsed.dir}</endorseddirs>
62                    </compilerArguments>
63                </configuration>
64            </plugin>
65            <plugin>
66                <groupId>org.apache.maven.plugins</groupId>
67                <artifactId>maven-war-plugin</artifactId>
68                <version>2.1.1</version>
69                <configuration>
70                    <failOnMissingWebXml>false</failOnMissingWebXml>
71                </configuration>
72            </plugin>
73        </plugins>
74    </build>
75    <groupId>eu.clarin.sru.cqibridge</groupId>
76    <licenses>
77        <license>
78            <name>GNU General Public License, Version 3</name>
79            <url>http://www.gnu.org/licenses/</url>
80        </license>
81    </licenses>
82</project>
Note: See TracBrowser for help on using the repository browser.