source: SRUServer/trunk/pom.xml @ 2621

Last change on this file since 2621 was 2621, checked in by oschonef, 11 years ago
  • fix typo
  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 3.1 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-server</artifactId>
7    <version>1.2.0-SNAPSHOT</version>
8    <packaging>jar</packaging>
9    <name>SRU/CQL Server</name>
10    <description>A SRU/CQL server implementation conforming to SRU/CQL protocol version 1.1 and 1.2</description>
11
12    <properties>
13        <!-- project settings -->
14        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15        <!-- plug-in settings -->
16        <maven.compiler.source>1.6</maven.compiler.source>
17        <maven.compiler.target>1.6</maven.compiler.target>
18        <!-- dependency versions -->
19        <slf4j.version>1.6.4</slf4j.version>
20    </properties>
21
22    <dependencies>
23        <dependency>
24            <groupId>org.slf4j</groupId>
25            <artifactId>slf4j-api</artifactId>
26            <version>${slf4j.version}</version>
27        </dependency>
28
29        <!-- Did you read the "README.txt" file and manually install the
30             artifact in your Maven repository? -->
31        <dependency>
32            <groupId>org.z3950.zing</groupId>
33            <artifactId>cql-java</artifactId>
34            <version>1.7</version>
35        </dependency>
36
37        <dependency>
38            <groupId>javax.servlet</groupId>
39            <artifactId>servlet-api</artifactId>
40            <version>2.5</version>
41            <type>jar</type>
42            <scope>provided</scope>
43        </dependency>
44    </dependencies>
45
46    <build>
47        <plugins>
48            <plugin>
49                <groupId>org.apache.maven.plugins</groupId>
50                <artifactId>maven-compiler-plugin</artifactId>
51                <version>2.1</version>
52                <configuration>
53                    <source>${maven.compiler.source}</source>
54                    <target>${maven.compiler.target}</target>
55                </configuration>
56            </plugin>
57
58            <plugin>
59                <groupId>org.apache.maven.plugins</groupId>
60                <artifactId>maven-javadoc-plugin</artifactId>
61                <version>2.8.1</version>
62                <executions>
63                    <execution>
64                        <id>attach-javadoc</id>
65                        <goals>
66                            <goal>jar</goal>
67                        </goals>
68                    </execution>
69                </executions>
70            </plugin>
71
72            <plugin>
73                <groupId>org.apache.maven.plugins</groupId>
74                <artifactId>maven-source-plugin</artifactId>
75                <version>2.2</version>
76                <executions>
77                    <execution>
78                        <id>attach-source</id>
79                        <goals>
80                            <goal>jar-no-fork</goal>
81                        </goals>
82                    </execution>
83                </executions>
84            </plugin>
85        </plugins>
86    </build>
87</project>
Note: See TracBrowser for help on using the repository browser.