blob: 9c654c8f2e066aa423d40572694b72c044484e6f [file] [log] [blame]
Silvio Heuberger9adfda42014-03-10 15:08:06 +01001<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 Villalobos985bc272013-12-02 22:01:50 -05002 <modelVersion>4.0.0</modelVersion>
3 <packaging>jar</packaging>
4 <groupId>ch.hsr</groupId>
5 <artifactId>geohash</artifactId>
Silvio Heubergerb5c517a2014-03-10 16:39:01 +01006 <version>1.0.10</version>
Christopher Villalobos985bc272013-12-02 22:01:50 -05007 <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 Heuberger9adfda42014-03-10 15:08:06 +010020 <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 Heubergerb5c517a2014-03-10 16:39:01 +010023 <tag>1.0.10</tag>
Silvio Heuberger9adfda42014-03-10 15:08:06 +010024 </scm>
25 <parent>
26 <groupId>org.sonatype.oss</groupId>
27 <artifactId>oss-parent</artifactId>
28 <version>7</version>
29 </parent>
Christopher Villalobos985bc272013-12-02 22:01:50 -050030 <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 Heuberger9adfda42014-03-10 15:08:06 +010049
50 <plugin>
Silvio Heuberger9adfda42014-03-10 15:08:06 +010051 <artifactId>maven-release-plugin</artifactId>
Silvio Heuberger86952cb2014-03-10 16:09:58 +010052 <version>2.4.2</version>
Silvio Heubergerf96c5af2014-03-10 16:36:23 +010053
54 <configuration>
55 <tagNameFormat>@{project.version}</tagNameFormat>
56 <pushChanges>false</pushChanges>
57 <localCheckout>true</localCheckout>
58 </configuration>
59
Silvio Heuberger86952cb2014-03-10 16:09:58 +010060 <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 Heuberger9adfda42014-03-10 15:08:06 +010067 </plugin>
68
Christopher Villalobos985bc272013-12-02 22:01:50 -050069 <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>