Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-20 09:50:06 +01:00
735a37ffd0
* Use custom radix sort for ordering blocks * Licenses :P * Fix ordering, add test for it * Grant Gradle more memory (thx Fabric) * Increase (?) / Specify memory for core tests * Many attempts at fixing OOM (cherry picked from commit bb013aa89b8457c4649e2546eef0aa94b9fc4020)
21 Zeilen
553 B
Kotlin
21 Zeilen
553 B
Kotlin
import org.gradle.api.Project
|
|
|
|
object Versions {
|
|
const val TEXT = "3.0.3"
|
|
const val TEXT_EXTRAS = "3.0.3"
|
|
const val PISTON = "0.5.2"
|
|
const val AUTO_VALUE = "1.7"
|
|
const val JUNIT = "5.6.1"
|
|
const val MOCKITO = "3.3.3"
|
|
const val LOGBACK = "1.2.3"
|
|
}
|
|
|
|
// Properties that need a project reference to resolve:
|
|
class ProjectVersions(project: Project) {
|
|
val loom = project.rootProject.property("loom.version")
|
|
val mixin = project.rootProject.property("mixin.version")
|
|
}
|
|
|
|
val Project.versions
|
|
get() = ProjectVersions(this)
|