Don't index local deployment run state in IntelliJ.
This commit is contained in:
parent
a74f899d28
commit
b7190ebc69
15
build.gradle
15
build.gradle
@ -1,5 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
|
id("org.jetbrains.gradle.plugin.idea-ext") version "1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'marginalia'
|
group 'marginalia'
|
||||||
@ -13,6 +14,20 @@ task dist(type: Copy) {
|
|||||||
into "$buildDir/dist"
|
into "$buildDir/dist"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
idea {
|
||||||
|
module {
|
||||||
|
excludeDirs.add(file("$projectDir/run/model"))
|
||||||
|
excludeDirs.add(file("$projectDir/run/samples"))
|
||||||
|
excludeDirs.add(file("$projectDir/run/db"))
|
||||||
|
excludeDirs.add(file("$projectDir/run/logs"))
|
||||||
|
excludeDirs.add(file("$projectDir/run/install"))
|
||||||
|
excludeDirs.add(file("$projectDir/run/data"))
|
||||||
|
excludeDirs.add(file("$projectDir/run/conf"))
|
||||||
|
excludeDirs.add(file("$projectDir/run/vol"))
|
||||||
|
excludeDirs.add(file("$projectDir/run/test-data"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
java {
|
java {
|
||||||
toolchain {
|
toolchain {
|
||||||
languageVersion.set(JavaLanguageVersion.of(17))
|
languageVersion.set(JavaLanguageVersion.of(17))
|
||||||
|
Loading…
Reference in New Issue
Block a user