From 4e694fdff631dc277b1fc8cc6c95cc8dce72f671 Mon Sep 17 00:00:00 2001 From: Viktor Lofgren Date: Fri, 25 Aug 2023 16:40:53 +0200 Subject: [PATCH] (minor) Comment build.gradle --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index 70984557..1ed11dc9 100644 --- a/build.gradle +++ b/build.gradle @@ -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"))