Silvio Heuberger | 9adfda4 | 2014-03-10 15:08:06 +0100 | [diff] [blame] | 1 | <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"> |
Christopher Villalobos | 985bc27 | 2013-12-02 22:01:50 -0500 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <packaging>jar</packaging> |
| 4 | <groupId>ch.hsr</groupId> |
| 5 | <artifactId>geohash</artifactId> |
Silvio Heuberger | b5c517a | 2014-03-10 16:39:01 +0100 | [diff] [blame] | 6 | <version>1.0.10</version> |
Christopher Villalobos | 985bc27 | 2013-12-02 22:01:50 -0500 | [diff] [blame] | 7 | <name>geohash-java</name> |
| 8 | <description> |
| 9 | An implementation of Geohashes in pure Java. |
| 10 | </description> |
| 11 | <url>https://github.com/kungfoo/geohash-java</url> |
| 12 | <licenses> |
| 13 | <license> |
| 14 | <name>LGPL 3.0</name> |
| 15 | <url>https://raw.github.com/kungfoo/geohash-java/master/LICENSE</url> |
| 16 | <distribution>repo</distribution> |
| 17 | </license> |
| 18 | </licenses> |
| 19 | <scm> |
Silvio Heuberger | 9adfda4 | 2014-03-10 15:08:06 +0100 | [diff] [blame] | 20 | <connection>scm:git:git@github.com:kungfoo/geohash-java.git</connection> |
| 21 | <developerConnection>scm:git:git@github.com:kungfoo/geohash-java.git</developerConnection> |
| 22 | <url>git@github.com:kungfoo/geohash-java.git</url> |
Silvio Heuberger | b5c517a | 2014-03-10 16:39:01 +0100 | [diff] [blame] | 23 | <tag>1.0.10</tag> |
Silvio Heuberger | 9adfda4 | 2014-03-10 15:08:06 +0100 | [diff] [blame] | 24 | </scm> |
| 25 | <parent> |
| 26 | <groupId>org.sonatype.oss</groupId> |
| 27 | <artifactId>oss-parent</artifactId> |
| 28 | <version>7</version> |
| 29 | </parent> |
Christopher Villalobos | 985bc27 | 2013-12-02 22:01:50 -0500 | [diff] [blame] | 30 | <developers> |
| 31 | <developer> |
| 32 | <id>kungfoo</id> |
| 33 | </developer> |
| 34 | </developers> |
| 35 | <properties> |
| 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 38 | </properties> |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
| 43 | <version>4.8.1</version> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | </dependencies> |
| 47 | <build> |
| 48 | <plugins> |
Silvio Heuberger | 9adfda4 | 2014-03-10 15:08:06 +0100 | [diff] [blame] | 49 | |
| 50 | <plugin> |
Silvio Heuberger | 9adfda4 | 2014-03-10 15:08:06 +0100 | [diff] [blame] | 51 | <artifactId>maven-release-plugin</artifactId> |
Silvio Heuberger | 86952cb | 2014-03-10 16:09:58 +0100 | [diff] [blame] | 52 | <version>2.4.2</version> |
Silvio Heuberger | f96c5af | 2014-03-10 16:36:23 +0100 | [diff] [blame] | 53 | |
| 54 | <configuration> |
| 55 | <tagNameFormat>@{project.version}</tagNameFormat> |
| 56 | <pushChanges>false</pushChanges> |
| 57 | <localCheckout>true</localCheckout> |
| 58 | </configuration> |
| 59 | |
Silvio Heuberger | 86952cb | 2014-03-10 16:09:58 +0100 | [diff] [blame] | 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>org.apache.maven.scm</groupId> |
| 63 | <artifactId>maven-scm-provider-gitexe</artifactId> |
| 64 | <version>1.8.1</version> |
| 65 | </dependency> |
| 66 | </dependencies> |
Silvio Heuberger | 9adfda4 | 2014-03-10 15:08:06 +0100 | [diff] [blame] | 67 | </plugin> |
| 68 | |
Christopher Villalobos | 985bc27 | 2013-12-02 22:01:50 -0500 | [diff] [blame] | 69 | <plugin> |
| 70 | <groupId>org.apache.maven.plugins</groupId> |
| 71 | <artifactId>maven-compiler-plugin</artifactId> |
| 72 | <version>3.0</version> |
| 73 | <configuration> |
| 74 | <source>1.6</source> |
| 75 | <target>1.6</target> |
| 76 | </configuration> |
| 77 | </plugin> |
| 78 | </plugins> |
| 79 | </build> |
| 80 | </project> |