Configure the intellij integration with sources

This commit is contained in:
R. Tyler Croy 2015-09-01 16:06:49 -07:00
parent e18ac81468
commit 4f416e84dd
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 8 additions and 0 deletions

View File

@ -5,6 +5,7 @@ plugins {
id "org.asciidoctor.gradle.asciidoctor" version "1.5.1" id "org.asciidoctor.gradle.asciidoctor" version "1.5.1"
id 'codenarc' id 'codenarc'
id 'groovy' id 'groovy'
id 'idea'
id 'application' id 'application'
} }
@ -69,6 +70,13 @@ dependencies {
testCompile 'org.spockframework:spock-core:0.7-groovy-2.0' testCompile 'org.spockframework:spock-core:0.7-groovy-2.0'
testCompile 'cglib:cglib-nodep:2.2.+' testCompile 'cglib:cglib-nodep:2.2.+'
} }
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////