(minor) Comment build.gradle
This commit is contained in:
parent
194a6057dd
commit
4e694fdff6
@ -13,6 +13,10 @@ tasks.register('dist', Copy) {
|
|||||||
from subprojects.collect { it.tasks.withType(Tar) }
|
from subprojects.collect { it.tasks.withType(Tar) }
|
||||||
into "$buildDir/dist"
|
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 {
|
doLast {
|
||||||
copy {
|
copy {
|
||||||
from tarTree("$buildDir/dist/converter-process.tar")
|
from tarTree("$buildDir/dist/converter-process.tar")
|
||||||
@ -42,6 +46,10 @@ tasks.register('dist', Copy) {
|
|||||||
}
|
}
|
||||||
idea {
|
idea {
|
||||||
module {
|
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/model"))
|
||||||
excludeDirs.add(file("$projectDir/run/dist"))
|
excludeDirs.add(file("$projectDir/run/dist"))
|
||||||
excludeDirs.add(file("$projectDir/run/samples"))
|
excludeDirs.add(file("$projectDir/run/samples"))
|
||||||
|
Loading…
Reference in New Issue
Block a user