From 0734acdcb05863cc4dd929c1bcef6ce632d4f3f6 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Wed, 9 Sep 2015 13:12:53 -0700 Subject: [PATCH] Use the idea plugin to generate an intellij project for myself --- .gitignore | 2 ++ build.gradle | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/.gitignore b/.gitignore index 4edf4ec..82b1cd8 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,5 @@ *.sw* .gradle/ build/ +.idea/ +redstorm.i* diff --git a/build.gradle b/build.gradle index 2484fae..cf10e8c 100644 --- a/build.gradle +++ b/build.gradle @@ -13,6 +13,7 @@ buildscript { } } +apply plugin: 'idea' apply plugin: 'maven' apply plugin: 'java' apply plugin: 'com.github.jruby-gradle.jar' @@ -177,5 +178,13 @@ bintray { } bintrayUpload.dependsOn assemble +install.dependsOn check, assemble + +idea { + module { + downloadJavadoc true + downloadSources true + } +} // vim: ft=groovy et ts=4 sw=4