|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
| 4 | + http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>com.mapcode</groupId> |
| 7 | + <artifactId>mapcode-java-examples</artifactId> |
| 8 | + <packaging>jar</packaging> |
| 9 | + <version>1.0-SNAPSHOT</version> |
| 10 | + |
| 11 | + <name>Mapcode Java Examples</name> |
| 12 | + <description> |
| 13 | + This package contains examples for the Mapcode Java library. |
| 14 | + For more info: http://www.mapcode.com |
| 15 | + </description> |
| 16 | + |
| 17 | + <organization> |
| 18 | + <name>Stichting Mapcode Foundation</name> |
| 19 | + <url>http://mapcode.com</url> |
| 20 | + </organization> |
| 21 | + |
| 22 | + <url>http://mapcode.com</url> |
| 23 | + |
| 24 | + <properties> |
| 25 | + <mapcode.version>1.0-SNAPSHOT</mapcode.version> |
| 26 | + <log4j.version>1.2.17</log4j.version> |
| 27 | + <slf4j.version>1.7.2</slf4j.version> |
| 28 | + </properties> |
| 29 | + |
| 30 | + <dependencies> |
| 31 | + |
| 32 | + <!-- Mapcode Library. --> |
| 33 | + <dependency> |
| 34 | + <groupId>com.mapcode</groupId> |
| 35 | + <artifactId>mapcode</artifactId> |
| 36 | + <version>${mapcode.version}</version> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <!-- Logging. --> |
| 40 | + <dependency> |
| 41 | + <groupId>log4j</groupId> |
| 42 | + <artifactId>log4j</artifactId> |
| 43 | + <version>${log4j.version}</version> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>org.slf4j</groupId> |
| 48 | + <artifactId>slf4j-api</artifactId> |
| 49 | + <version>${slf4j.version}</version> |
| 50 | + </dependency> |
| 51 | + |
| 52 | + <dependency> |
| 53 | + <groupId>org.slf4j</groupId> |
| 54 | + <artifactId>slf4j-log4j12</artifactId> |
| 55 | + <version>${slf4j.version}</version> |
| 56 | + </dependency> |
| 57 | + </dependencies> |
| 58 | +</project> |
0 commit comments