source: SRUClient/trunk/pom.xml @ 7272

Last change on this file since 7272 was 7272, checked in by Oliver Schonefeld, 2 years ago
  • update copyright
  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/xml
File size: 3.7 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>2.2.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>Leibniz-Institut fÃŒr Deutsche Sprache</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.8</maven.compiler.source>
21        <maven.compiler.target>1.8</maven.compiler.target>
22        <!-- versions of common dependencies -->
23        <slf4j.version>1.7.32</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.5.13</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    </dependencies>
45
46    <build>
47        <plugins>
48            <plugin>
49                <groupId>org.apache.maven.plugins</groupId>
50                <artifactId>maven-compiler-plugin</artifactId>
51                <version>3.8.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>3.3.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>3.2.1</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
86            <plugin>
87                <groupId>org.apache.maven.plugins</groupId>
88                <artifactId>maven-deploy-plugin</artifactId>
89                <version>2.8.2</version>
90            </plugin>
91        </plugins>
92    </build>
93
94    <distributionManagement>
95        <snapshotRepository>
96            <id>CLARIN-Snapshot</id>
97            <url>https://nexus.clarin.eu/content/repositories/clarin-snapshot</url>
98        </snapshotRepository>
99
100        <repository>
101            <id>CLARIN</id>
102            <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
103        </repository>
104    </distributionManagement>
105</project>
Note: See TracBrowser for help on using the repository browser.