Files
SteamWar/build.gradle.kts
2024-08-04 21:15:24 +02:00

58 lines
1.6 KiB
Kotlin

import java.net.URI
/*
* This file is a part of the SteamWar software.
*
* Copyright (C) 2024 SteamWar.de-Serverteam
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
plugins {
id("base")
id("application")
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
}
group = "de.steamwar"
version = ""
allprojects {
repositories {
mavenCentral()
maven {
url = URI("https://repo.papermc.io/repository/maven-public/")
content {
includeGroup("com.velocitypowered")
}
}
maven {
url = URI("https://m2.dv8tion.net/releases")
content {
includeGroup("net.dv8tion")
}
}
maven {
url = URI("https://repo.lunarclient.dev")
content {
includeGroup("com.lunarclient")
}
}
maven {
url = URI("https://steamwar.de/maven/")
}
}
}