Use the idea plugin to generate an intellij project for myself

This commit is contained in:
R. Tyler Croy 2015-09-09 13:12:53 -07:00
parent 886c9d91de
commit 0734acdcb0
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 11 additions and 0 deletions

2
.gitignore vendored
View File

@ -21,3 +21,5 @@
*.sw* *.sw*
.gradle/ .gradle/
build/ build/
.idea/
redstorm.i*

View File

@ -13,6 +13,7 @@ buildscript {
} }
} }
apply plugin: 'idea'
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'com.github.jruby-gradle.jar' apply plugin: 'com.github.jruby-gradle.jar'
@ -177,5 +178,13 @@ bintray {
} }
bintrayUpload.dependsOn assemble bintrayUpload.dependsOn assemble
install.dependsOn check, assemble
idea {
module {
downloadJavadoc true
downloadSources true
}
}
// vim: ft=groovy et ts=4 sw=4 // vim: ft=groovy et ts=4 sw=4