elx/gradle/ide/idea.gradle

14 lines
231 B
Groovy
Raw Permalink Normal View History

2020-05-21 23:51:40 +02:00
apply plugin: 'idea'
idea {
module {
outputDir file('build/classes/java/main')
testOutputDir file('build/classes/java/test')
}
}
// if project was not imported via idea pluginw
clean {
delete 'out'
}