diff options
author | Linnea Gräf <nea@nea.moe> | 2024-07-05 22:17:02 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-07-05 22:17:02 +0200 |
commit | 3d792dbef7c7e0f186e29f2e3999f99c2c14f5d7 (patch) | |
tree | b383c2c584a96b93c46d1dae3efcd3c6571e3d05 /build.gradle.kts | |
parent | 5ee4b8d925eb12e068038a1fd2e1f35cdd8ef87e (diff) | |
download | Firmament-3d792dbef7c7e0f186e29f2e3999f99c2c14f5d7.tar.gz Firmament-3d792dbef7c7e0f186e29f2e3999f99c2c14f5d7.tar.bz2 Firmament-3d792dbef7c7e0f186e29f2e3999f99c2c14f5d7.zip |
Port to 1.21
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 8fe454f..aaee76d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -251,11 +251,11 @@ tasks.processResources { tasks.scanLicenses { scanConfiguration(nonModImplentation) scanConfiguration(configurations.modCompileClasspath.get()) - outputFile.set(file("$buildDir/LICENSES-FIRMAMENT.json")) + outputFile.set(layout.buildDirectory.file("LICENSES-FIRMAMENT.json")) licenseFormatter.set(moe.nea.licenseextractificator.JsonLicenseFormatter()) } tasks.create("printAllLicenses", LicenseDiscoveryTask::class.java, licensing).apply { - outputFile.set(file("$buildDir/LICENSES-FIRMAMENT.txt")) + outputFile.set(layout.buildDirectory.file("LICENSES-FIRMAMENT.txt")) licenseFormatter.set(moe.nea.licenseextractificator.TextLicenseFormatter()) scanConfiguration(nonModImplentation) scanConfiguration(configurations.modCompileClasspath.get()) @@ -268,7 +268,3 @@ tasks.create("printAllLicenses", LicenseDiscoveryTask::class.java, licensing).ap licensing.addExtraLicenseMatchers() fletchingTable.defaultMixinEnvironment.set("client") - -//vineflower { -// toolVersion.set("1.9.1") -//} |