You can download geoip2-2.8.0.jar in this page.
Apache License, Version 2.0
geoip2-2.8.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.maxmind.geoip2/geoip2/pom.properties META-INF/maven/com.maxmind.geoip2/geoip2/pom.xml com.maxmind.geoip2.DatabaseProvider.class com.maxmind.geoip2.DatabaseReader.class com.maxmind.geoip2.GeoIp2Provider.class com.maxmind.geoip2.JsonInjector.class com.maxmind.geoip2.WebServiceClient.class com.maxmind.geoip2.exception.AddressNotFoundException.class com.maxmind.geoip2.exception.AuthenticationException.class com.maxmind.geoip2.exception.GeoIp2Exception.class com.maxmind.geoip2.exception.HttpException.class com.maxmind.geoip2.exception.InvalidRequestException.class com.maxmind.geoip2.exception.OutOfQueriesException.class com.maxmind.geoip2.exception.PermissionRequiredException.class com.maxmind.geoip2.model.AbstractCityResponse.class com.maxmind.geoip2.model.AbstractCountryResponse.class com.maxmind.geoip2.model.AbstractResponse.class com.maxmind.geoip2.model.AnonymousIpResponse.class com.maxmind.geoip2.model.CityResponse.class com.maxmind.geoip2.model.ConnectionTypeResponse.class com.maxmind.geoip2.model.CountryResponse.class com.maxmind.geoip2.model.DomainResponse.class com.maxmind.geoip2.model.EnterpriseResponse.class com.maxmind.geoip2.model.InsightsResponse.class com.maxmind.geoip2.model.IspResponse.class com.maxmind.geoip2.record.AbstractNamedRecord.class com.maxmind.geoip2.record.AbstractRecord.class com.maxmind.geoip2.record.City.class com.maxmind.geoip2.record.Continent.class com.maxmind.geoip2.record.Country.class com.maxmind.geoip2.record.Location.class com.maxmind.geoip2.record.MaxMind.class com.maxmind.geoip2.record.Postal.class com.maxmind.geoip2.record.RepresentedCountry.class com.maxmind.geoip2.record.Subdivision.class com.maxmind.geoip2.record.Traits.class
geoip2-2.8.0.pom file content.
<?xml version="1.0" encoding="utf-8"?> <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"> <modelVersion>4.0.0</modelVersion> <groupId>com.maxmind.geoip2</groupId> <artifactId>geoip2</artifactId> <version>2.8.0</version> <packaging>jar</packaging> <name>MaxMind GeoIP2 API</name> <description>GeoIP2 webservice client and database reader</description> <url>http://dev.maxmind.com/geoip/geoip2/web-services</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>MaxMind, Inc.</name> <url>http://www.maxmind.com/</url> </organization> <scm> <url>https://github.com/maxmind/GeoIP2-java</url> <connection>scm:git:git://github.com:maxmind/GeoIP2-java.git</connection> <developerConnection>scm:git:git@github.com:maxmind/GeoIP2-java.git</developerConnection> </scm> <issueManagement> <url>https://github.com/maxmind/GeoIP2-java/issues</url> <system>GitHub</system> </issueManagement> <developers> <developer> <id>oschwald</id> <name>Gregory J. Oschwald</name> <email>goschwald@maxmind.com</email> </developer> </developers> <dependencies> <dependency> <groupId>com.maxmind.db</groupId> <artifactId>maxmind-db</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.2</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.8.2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock</artifactId> <version>2.1.9</version> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>1.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.21</version> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.jr</groupId> <artifactId>jackson-jr-objects</artifactId> <version>2.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>pl.pragmatists</groupId> <artifactId>JUnitParams</artifactId> <version>1.0.5</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jcabi</groupId> <artifactId>jcabi-matchers</artifactId> <version>1.3</version> <scope>test</scope> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/assembly/bin.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>3.1.0</version> <configuration> <serviceName>travis-ci</serviceName> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <inherited>true</inherited> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.7</version> <configuration> <format>xml</format> <maxmem>256m</maxmem> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.4.0</version> <executions> <execution> <phase>initialize</phase> <id>invoke build</id> <goals> <goal>exec</goal> </goals> </execution> </executions> <configuration> <executable>git</executable> <commandlineArgs>submodule update --init --recursive</commandlineArgs> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.1</version> </plugin> </plugins> </build> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> </project>
<dependency> <groupId>com.maxmind.geoip2</groupId> <artifactId>geoip2</artifactId> <version>2.8.0</version> </dependency>
If you think the following geoip2-2.8.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download geoip2-2.8.0.jar file