Skip to content

Commit

Permalink
Remove superfluous license header and fix config cache
Browse files Browse the repository at this point in the history
  • Loading branch information
RedNesto committed Sep 4, 2024
1 parent 0315be3 commit 46caaf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,8 @@ tasks.processResources {
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")
Expand Down
20 changes: 0 additions & 20 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://www.gnu.org/licenses/>.
*/

plugins {
`kotlin-dsl`
}
Expand Down

0 comments on commit 46caaf6

Please sign in to comment.