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
import groovy.xml.MarkupBuilder | |
apply plugin: "java" | |
apply plugin: "war" | |
apply plugin: "eclipse" | |
// maven-publish, maven2Gradle, build-dashboard | |
// checkstyle, findbugs, jdepend, pmd |
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
Show hidden characters
{ | |
"folders": | |
[ | |
{ "path":"grails-app/conf", "name":"Configuration" }, | |
{ "path":"grails-app/controllers", "name":"Controllers" }, | |
{ "path":"grails-app/domain", "name":"Domain Objects" }, | |
{ "path":"grails-app/i18n", "name":"Internationalization" }, | |
{ "path":"grails-app/services", "name":"Services" }, | |
{ "path":"grails-app/taglib", "name":"Tag Libraries" }, | |
{ "path":"grails-app/utils", "name":"Utils" }, |
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
def l = ["", *"A".."Z"] | |
def combinations = [l, l].combinations().collect{ it.join() }.unique() - '' | |
combinations.each { | |
println it | |
} |
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
nnoremap <Space>gn :<C-u>w<CR>:Git now<CR> | |
nnoremap <Space>gN :<C-u>w<CR>:Git now --all<CR> |