Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AlchemistSimulator/Alchemist
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a35dd55a33d4db2e944c0f7208012dbe796daa21
Choose a base ref
..
head repository: AlchemistSimulator/Alchemist
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dea57533180b3f8b34c3aeb4a9e9ec18cfe9e484
Choose a head ref
Showing with 3 additions and 14 deletions.
  1. +3 −14 build.gradle.kts
17 changes: 3 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -28,7 +28,6 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.time.Duration

plugins {
distribution
alias(libs.plugins.dokka)
alias(libs.plugins.gitSemVer)
alias(libs.plugins.java.qa)
@@ -59,7 +58,6 @@ allprojects {
apply(plugin = publishOnCentral.id)
apply(plugin = taskTree.id)
}
apply(plugin = "distribution")

multiJvm {
jvmVersionForCompilation.set(minJavaVersion.toInt())
@@ -172,15 +170,6 @@ allprojects {
dependsOn(dokka)
from(dokka.outputDirectory)
}
publishing {
publications {
publications.withType<MavenPublication>().configureEach {
if ("OSSRH" !in name) {
artifact(tasks.javadocJar)
}
}
}
}
/*
* This is a workaround for the following Gradle error,
* and should be removed as soon as possible.
@@ -283,9 +272,9 @@ allprojects {
}

// Disable distribution tasks that just clutter the build
listOf(tasks.distZip, tasks.distTar).forEach {
it.configure { enabled = false }
}
// listOf(tasks.distZip, tasks.distTar).forEach {
// it.configure { enabled = false }
// }
}

/*