Download geoip-api-1.2.14.jar file

Introduction

You can download geoip-api-1.2.14.jar in this page.

License

Lesser General Public License (LGPL) v 2.1

Type List

geoip-api-1.2.14.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.maxmind.geoip/geoip-api/pom.properties
META-INF/maven/com.maxmind.geoip/geoip-api/pom.xml
com.maxmind.geoip.Country.class
com.maxmind.geoip.DatabaseInfo.class
com.maxmind.geoip.Location.class
com.maxmind.geoip.LookupService.class
com.maxmind.geoip.Region.class
com.maxmind.geoip.regionName.class
com.maxmind.geoip.timeZone.class

Pom

geoip-api-1.2.14.pom file content.

<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <name>MaxMind GeoIP API</name>
    <description>MaxMind GeoIP Java API</description>
    <url>https://github.com/maxmind/geoip-api-java</url>

    <groupId>com.maxmind.geoip</groupId>
    <artifactId>geoip-api</artifactId>
    <version>1.2.14</version>
    <packaging>bundle</packaging>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <licenses>
        <license>
            <name>Lesser General Public License (LGPL) v 2.1</name>
            <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

  <organization>
    <name>MaxMind, Inc.</name>
    <url>http://www.maxmind.com/</url>
  </organization>

    <developers>
        <developer>
            <id>bzentner</id>
            <name>Boris Zentner</name>
            <email>bzentner@maxmind.com</email>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:git://github.com:maxmind/geoip-api-java.git</connection>
        <developerConnection>scm:git:git@github.com:maxmind/geoip-api-java.git</developerConnection>
    </scm>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <jdk.version>1.6</jdk.version>
        <junit.version>4.11</junit.version>
        <mockito.version>1.9.0</mockito.version>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
           </plugin>

           <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>2.5.0</version>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Export-Package>com.maxmind.geoip</Export-Package>
                    </instructions>
                </configuration>
            </plugin>
          </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>${mockito.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>

POM Entry

<dependency>
   <groupId>com.maxmind.geoip</groupId>
   <artifactId>geoip-api</artifactId>
   <version>1.2.14</version>
</dependency>

Download

If you think the following geoip-api-1.2.14.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download geoip-api-1.2.14.jar file




PreviousNext

Related