nominatim-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.dudie</groupId> <artifactId>nominatim-api</artifactId> <version>3.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- [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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>fr.dudie</groupId> <artifactId>nominatim-api</artifactId> <version>3.4</version> <name>Nominatim Java API client</name> <description>A simple client library for the Nominatim API written in Java</description> <url>https://github.com/jeremiehuchet/nominatim-java-api</url> <inceptionYear>2010</inceptionYear> <organization> <name>Dudie</name> </organization> <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> <developers> <developer> <name>Jeremie Huchet</name> </developer> </developers> <scm> <connection>scm:git:git@github.com:jeremiehuchet/nominatim-java-api.git</connection> <developerConnection>scm:git:git@github.com:jeremiehuchet/nominatim-java-api.git</developerConnection> <url>https://github.com/jeremiehuchet/nominatim-java-api/tree/master</url> </scm> <issueManagement> <system>Github tracker</system> <url>https://github.com/jeremiehuchet/nominatim-java-api/issues</url> </issueManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <slf4j.version>1.7.26</slf4j.version> <junit.version>4.12</junit.version> <httpcomponents.version>4.5.9</httpcomponents.version> <geogson-jts.version>1.1.100</geogson-jts.version> <gson.version>2.8.5</gson.version> <commons-lang3.version>3.9</commons-lang3.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <revision>0-SNAPSHOT</revision> <license.licenseName>lgpl_v3</license.licenseName> </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>${gson.version}</version> </dependency> <dependency> <groupId>com.github.filosganga</groupId> <artifactId>geogson-jts</artifactId> <version>${geogson-jts.version}</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>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>copy-license</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}/META-INF/maven/${project.groupId}/${project.artifactId}</outputDirectory> <resources> <resource> <directory>${basedir}</directory> <includes> <includes>LICENSE</includes> <includes>README.md</includes> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.20</version> <executions> <execution> <id>check-license-headers</id> <phase>validate</phase> <goals> <goal>check-file-header</goal> </goals> </execution> </executions> <configuration> <failOnMissingHeader>true</failOnMissingHeader> <failOnNotUptodateHeader>true</failOnNotUptodateHeader> <processStartTag>[license]</processStartTag> <sectionDelimiter>~~~~</sectionDelimiter> <processEndTag>[/license]</processEndTag> </configuration> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>2.2.5</version> <executions> <execution> <id>git-info</id> <goals> <goal>revision</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>