CrazyAuctions/settings.gradle.kts

19 lines
383 B
Plaintext
Raw Normal View History

2024-06-16 20:38:19 +02:00
import com.ryderbelserion.feather.includeProject
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
2024-03-05 18:08:54 +01:00
2024-06-16 20:38:19 +02:00
rootProject.name = "CrazyAuctions"
pluginManagement {
2024-03-05 18:08:54 +01:00
repositories {
2024-06-16 20:38:19 +02:00
maven("https://repo.crazycrew.us/releases")
2024-03-05 18:08:54 +01:00
gradlePluginPortal()
}
}
2024-06-16 20:38:19 +02:00
plugins {
id("com.ryderbelserion.feather-settings") version "0.0.1"
}
2024-03-05 18:08:54 +01:00
2024-06-16 20:38:19 +02:00
listOf("paper").forEach(::includeProject)