forked from jeremiehuchet/nominatim-java-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
107 lines (95 loc) · 3.76 KB
/
pom.xml
File metadata and controls
107 lines (95 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!--
[license]
Nominatim Java API client
~~~~
Copyright (C) 2010 - 2014 Dudie
~~~~
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Lesser Public License for more details.
You should have received a copy of the GNU General Lesser Public
License along with this program. If not, see
<http://www.gnu.org/licenses/lgpl-3.0.html>.
[/license]
--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>fr.dudie</groupId>
<artifactId>dudie-parent</artifactId>
<version>1.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>nominatim-api</artifactId>
<version>3.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Nominatim Java API client</name>
<description>A simple client library for the Nominatim API written in Java</description>
<url>https://github.com/kops/nominatim-java-api</url>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>GNU Lesser General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/kops/nominatim-java-api/tree/master</url>
<connection>scm:git:git@github.com:kops/nominatim-java-api.git</connection>
<developerConnection>scm:git:git@github.com:kops/nominatim-java-api.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>Github tracker</system>
<url>https://github.com/kops/nominatim-java-api/issues</url>
</issueManagement>
<properties>
<!-- compile time deps versions -->
<slf4j.version>1.6.1</slf4j.version>
<httpcomponents.version>4.0.2</httpcomponents.version>
<!-- test deps versions -->
<junit.version>4.8.2</junit.version>
<commons-lang.version>2.6</commons-lang.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpcomponents.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang.version}</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>