User: rednesto Date: 04 Sep 24 22:01 Revision: 46caaf6beac4c209181f806063dbc468051ee077 Summary: Remove superfluous license header and fix config cache TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9653&personal=false Index: build.gradle.kts =================================================================== --- build.gradle.kts (revision 0315be309d4ba98603eed7c28acf27ddc87ffb9a) +++ build.gradle.kts (revision 46caaf6beac4c209181f806063dbc468051ee077) @@ -232,11 +232,9 @@ tasks.test { dependsOn(tasks.jar, testLibs) - doFirst { - testLibs.resolvedConfiguration.resolvedArtifacts.forEach { - systemProperty("testLibs.${it.name}", it.file.absolutePath) - } + testLibs.resolvedConfiguration.resolvedArtifacts.forEach { + systemProperty("testLibs.${it.name}", it.file.absolutePath) + } - } systemProperty("NO_FS_ROOTS_ACCESS_CHECK", "true") systemProperty("java.awt.headless", "true") Index: buildSrc/build.gradle.kts =================================================================== --- buildSrc/build.gradle.kts (revision 0315be309d4ba98603eed7c28acf27ddc87ffb9a) +++ buildSrc/build.gradle.kts (revision 46caaf6beac4c209181f806063dbc468051ee077) @@ -20,26 +20,6 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile -/* - * Minecraft Development for IntelliJ - * - * https://mcdev.io/ - * - * Copyright (C) 2024 minecraft-dev - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation, version 3.0 only. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program. If not, see . - */ - plugins { `kotlin-dsl` }