(minor) Comment build.gradle

This commit is contained in:
Viktor Lofgren 2023-08-25 16:40:53 +02:00
parent 194a6057dd
commit 4e694fdff6

View File

@ -13,6 +13,10 @@ tasks.register('dist', Copy) {
from subprojects.collect { it.tasks.withType(Tar) }
into "$buildDir/dist"
// For local development, each processes that are to be triggerable
// from the control-service need to go here to end up somewhere the
// control-service can find them
doLast {
copy {
from tarTree("$buildDir/dist/converter-process.tar")
@ -42,6 +46,10 @@ tasks.register('dist', Copy) {
}
idea {
module {
// Exclude these directories from being indexed by IntelliJ
// as they tend to bring the IDE to its knees and use up all
// Inotify spots in a hurry
excludeDirs.add(file("$projectDir/run/backup"))
excludeDirs.add(file("$projectDir/run/model"))
excludeDirs.add(file("$projectDir/run/dist"))
excludeDirs.add(file("$projectDir/run/samples"))