Excluded run folder in IDEA

This commit is contained in:
RaphiMC 2023-12-25 20:28:37 +01:00
parent 70f32dfe08
commit 3866128cf9
No known key found for this signature in database
GPG Key ID: 0F6BB0657A03AC94
1 changed files with 9 additions and 0 deletions

View File

@ -1,6 +1,7 @@
plugins {
id "java-library"
id "maven-publish"
id "idea"
id "net.raphimc.class-token-replacer" version "1.0.0"
}
@ -94,6 +95,14 @@ publishing {
}
}
idea {
module {
["run"].each {
excludeDirs << file("$it")
}
}
}
String latestCommitHash() {
def stdout = new ByteArrayOutputStream()
exec {