blob: bef76569ae05c52e5bcb74a1da030588c5ffca97 [file] [log] [blame]
Silvio Heuberger54d77302010-06-08 13:51:41 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Mårten Gustafson7cfd3c12010-05-30 17:44:30 +02003 <modelVersion>4.0.0</modelVersion>
4 <groupId>ch.hsr</groupId>
5 <artifactId>ch.hsr.geohash</artifactId>
6 <packaging>jar</packaging>
Silvio Heuberger890565f2011-01-08 11:28:44 +01007 <version>1.0.2</version>
Mårten Gustafson7cfd3c12010-05-30 17:44:30 +02008 <name>geohash-java</name>
9 <dependencies>
10 <dependency>
11 <groupId>junit</groupId>
12 <artifactId>junit</artifactId>
13 <version>4.8.1</version>
14 <type>jar</type>
15 <scope>compile</scope>
16 </dependency>
17 </dependencies>
18 <build>
Silvio Heuberger54d77302010-06-08 13:51:41 +020019 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <configuration>
24 <source>1.6</source>
25 <target>1.6</target>
26 </configuration>
27 </plugin>
Mårten Gustafson7cfd3c12010-05-30 17:44:30 +020028 </plugins>
29 </build>
30</project>