Download s2-geometry-library-java-1.0.0.jar file

Introduction

You can download s2-geometry-library-java-1.0.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

s2-geometry-library-java-1.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/io.sgr/s2-geometry-library-java/pom.properties
META-INF/maven/io.sgr/s2-geometry-library-java/pom.xml
com.google.common.geometry.MutableInteger.class
com.google.common.geometry.R1Interval.class
com.google.common.geometry.R2Vector.class
com.google.common.geometry.S1Angle.class
com.google.common.geometry.S1Interval.class
com.google.common.geometry.S2.class
com.google.common.geometry.S2AreaCentroid.class
com.google.common.geometry.S2Cap.class
com.google.common.geometry.S2Cell.class
com.google.common.geometry.S2CellId.class
com.google.common.geometry.S2CellUnion.class
com.google.common.geometry.S2Edge.class
com.google.common.geometry.S2EdgeIndex.class
com.google.common.geometry.S2EdgeUtil.class
com.google.common.geometry.S2LatLng.class
com.google.common.geometry.S2LatLngRect.class
com.google.common.geometry.S2Loop.class
com.google.common.geometry.S2Point.class
com.google.common.geometry.S2Polygon.class
com.google.common.geometry.S2PolygonBuilder.class
com.google.common.geometry.S2Polyline.class
com.google.common.geometry.S2Projections.class
com.google.common.geometry.S2Region.class
com.google.common.geometry.S2RegionCoverer.class

Pom

s2-geometry-library-java-1.0.0.pom file content.

<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>io.sgr</groupId>
	<artifactId>s2-geometry-library-java</artifactId>
	<version>1.0.0</version>

	<name>Google S2 geometry library</name>
	<description>A java library for Google s2</description>
	<url>https://github.com/sgr-io/s2-geometry-library-java</url>
	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<connection>scm:git:git@github.com:sgr-io/s2-geometry-library-java.git</connection>
		<developerConnection>scm:git:git@github.com:sgr-io/s2-geometry-library-java.git</developerConnection>
		<url>https://github.com/sgr-io/s2-geometry-library-java</url>
	  <tag>v1.0.0</tag>
  </scm>
	<developers>
		<developer>
			<id>sgralpha</id>
			<name>SgrAlpha</name>
		</developer>
	</developers>

	<properties>
		<java.version>1.7</java.version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<dependencies>
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>20.0</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>3.6.1</version>
					<configuration>
						<source>${java.version}</source>
						<target>${java.version}</target>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-source-plugin</artifactId>
					<version>3.0.1</version>
					<executions>
						<execution>
							<id>attach-sources</id>
							<goals>
								<goal>jar</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-javadoc-plugin</artifactId>
					<version>2.10.4</version>
					<configuration>
						<quiet>true</quiet>
						<nonavbar>true</nonavbar>
						<notree>true</notree>
						<nocomment>true</nocomment>
						<nohelp>true</nohelp>
						<additionalparam>-Xdoclint:none</additionalparam>
					</configuration>
					<executions>
						<execution>
							<id>attach-javadocs</id>
							<goals>
								<goal>jar</goal>
							</goals>
						</execution>
					</executions>
				</plugin>
				<plugin>
					<groupId>com.github.wvengen</groupId>
					<artifactId>proguard-maven-plugin</artifactId>
					<version>2.0.14</version>
					<executions>
						<execution>
							<phase>package</phase>
							<goals>
								<goal>proguard</goal>
							</goals>
						</execution>
					</executions>
					<configuration>
						<obfuscate>true</obfuscate>
						<injar>${project.build.finalName}.jar</injar>
						<outjar>${project.build.finalName}-proguard.jar</outjar>
						<outputDirectory>${project.build.directory}</outputDirectory>
						<proguardInclude>${basedir}/proguard.cfg</proguardInclude>
						<libs>
							<lib>${java.home}/lib/rt.jar</lib>
							<lib>${java.home}/lib/jsse.jar</lib>
						</libs>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-gpg-plugin</artifactId>
					<version>1.6</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-release-plugin</artifactId>
					<version>2.5.3</version>
					<configuration>
						<autoVersionSubmodules>true</autoVersionSubmodules>
						<tagNameFormat>v@{project.version}</tagNameFormat>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>com.github.wvengen</groupId>
				<artifactId>proguard-maven-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-gpg-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-release-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

	<distributionManagement>
		<repository>
			<id>ossrh-sgralpha</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
		<snapshotRepository>
			<id>ossrh-sgralpha</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
	</distributionManagement>

</project>

POM Entry

<dependency>
   <groupId>io.sgr</groupId>
   <artifactId>s2-geometry-library-java</artifactId>
   <version>1.0.0</version>
</dependency>

Download

If you think the following s2-geometry-library-java-1.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download s2-geometry-library-java-1.0.0.jar file




PreviousNext

Related