ipinfo-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>uk.bot-by.ip-address</groupId>
<artifactId>ipinfo-api</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2017-2023 Witalij Berdinskich
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>uk.bot-by.ip-address</groupId>
<artifactId>ipinfo-api</artifactId>
<version>1.0.0</version>
<name>IPinfo API</name>
<description>Unofficial Java wrapper for ipinfo.io IP geolocation API.</description>
<url>https://gitlab.com/bot-by/ipinfo-api</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>See LICENSE</comments>
</license>
</licenses>
<developers>
<developer>
<id>radio_rogal</id>
<name>Vitaliy Berdinskikh</name>
<email>radio_rogal@keemail.me</email>
<timezone>Europe/Kyiv</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitlab.com/bot-by/ipinfo-api.git</connection>
<developerConnection>scm:git:git@gitlab.com:bot-by/ipinfo-api.git</developerConnection>
<url>https://gitlab.com/bot-by/ipinfo-api</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230227</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-core</artifactId>
<version>12.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-java11</artifactId>
<version>12.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-json</artifactId>
<version>12.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.7</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>