This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| # newsbt -- create a new sbt project | |
| # Change this to generate projects using a different version of Scala | |
| # You can override it with the -s option | |
| scala_version=2.10.2 | |
| # I always use this namespace even though I don't own the domain name :) | |
| # You can override it with the -n option | |
| base_namespace=com.timjstewart |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> | |
| <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false"> | |
| <!-- ================================= --> | |
| <!-- Preserve messages in a local file --> | |
| <!-- ================================= --> | |
| <appender name="ASYNC" class="org.apache.log4j.AsyncAppender"> | |
| <param name="blocking" value="false"/> |
NewerOlder