Talk:From Dusk Till Dawn

Add topic
From MHWiki

Hosting[edit]

Currently DTD is hosted by Berzerg, who is not playing anymore. If anything should happen to the host, or to Berzerg, then this host will not be an option anymore. Documentation for setting up DTD on your own machine is not complete, but is included below incase someone wants to expand on it.

1) set up a virtual machine running debian - vim, sudo, tmux, git
2) git clone https://github.com/robert-bor/from-dusk-till-dawn.git
3) sudo apt-get install maven2
4) mvn install

error:
[INFO] Compilation failure
Unable to locate the Javac Compiler in:

  /usr/lib/jvm/java-6-openjdk-amd64/jre/../lib/tools.jar

5) sudo apt-get install openjdk-6-jdk
6) mvn install

errors like: annotations are not supported in -source 1.3
(use -source 5 or higher to enable annotations)

solution: http://stackoverflow.com/a/16822446
Then add target as well: http://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html

--Isaaclw (talk) 17:35, 6 March 2016 (MST)