Skip to content

Instantly share code, notes, and snippets.

chrome://flags/#enhanced-bookmarks-experiment
@qfrank
qfrank / gradle note
Last active August 29, 2015 14:22
Gradle note
// setting compile encoding:
// compileJava.options.encoding = 'UTF-8'
// compileGroovy.options.encoding = 'UTF-8'
// compileTestGroovy.options.encoding = 'UTF-8'
// compileTestJava.options.encoding = 'UTF-8'
tasks.withType(AbstractCompile) {
options.encoding = 'UTF-8'
}
@qfrank
qfrank / grails note
Last active September 1, 2015 13:01
grails url-mappings-report
// test com.xx.PushServiceSpec
test-app unit: **.Push*
// specify service init non-lazy, just add a static lazyInit property with false
static lazyInit = false
import org.grails.databinding.converters.ValueConverter
import test.Address