added custom configuration to nether rendering, changed pom.xml, so

maven compiles dynmap.jar instead of dynamic-map.jar
This commit is contained in:
Arthur Mayer 2011-02-18 01:23:14 +01:00
parent bf4ea4f08d
commit 0cc53a3384
2 changed files with 18 additions and 15 deletions

View file

@ -28,6 +28,9 @@ maps:
- class: org.dynmap.kzedmap.CaveTileRenderer - class: org.dynmap.kzedmap.CaveTileRenderer
prefix: ct prefix: ct
maximumheight: 127 maximumheight: 127
- class: org.dynmap.kzedmap.DefaultTileRenderer
prefix: nt
maximumheight: 64
web: web:
# Interval the browser should poll for updates. # Interval the browser should poll for updates.
@ -61,7 +64,7 @@ web:
- type: KzedMapType - type: KzedMapType
title: Surface title: Surface
name: nether name: nether
prefix: t prefix: nt
# Example: # Example:
#- title: Other World # Under what name the world is displayed. #- title: Other World # Under what name the world is displayed.
# name: world_other # The actual name of the world (equal to your directory-name). # name: world_other # The actual name of the world (equal to your directory-name).

View file

@ -1,7 +1,7 @@
<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"> <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> <modelVersion>4.0.0</modelVersion>
<groupId>org.bukkit</groupId> <groupId>org.bukkit</groupId>
<artifactId>dynamic-map</artifactId> <artifactId>dynmap</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<name>DynamicMap</name> <name>DynamicMap</name>
<url>http://www.bukkit.org</url> <url>http://www.bukkit.org</url>