Skip to content

Instantly share code, notes, and snippets.

View pledbrook's full-sized avatar

Peter Ledbrook pledbrook

View GitHub Profile
// Grails 2.0.4
grails.project.dependency.resolution = {
// inherit Grails' default dependencies
inherits("global") {
// uncomment to disable ehcache
// excludes 'ehcache'
}
log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
checksums true // Whether to verify checksums on resolve
@pledbrook
pledbrook / compile
Created September 21, 2011 08:45 — forked from jesperfj/compile
Grails LP
#!/usr/bin/env bash
# bin/compile <build-dir> <cache-dir>
# fail fast
set -e
BIN_DIR=$(cd $(dirname $0); pwd) # absolute path
# parse args
BUILD_DIR=$1
CACHE_DIR=$2