anime-game-multi-proto/build.gradle.kts
hartie95 6bfdc91a3a [GI/Proto] Added more GI Protos and increased version
* quests
* regional systems (withering/aranara)
* city reputation
* items
2024-07-21 07:07:04 +02:00

42 lines
968 B
Plaintext

group = "org.anime_game_servers.multi_proto"
version = "0.2"
plugins {
id("maven-publish")
kotlin("multiplatform") version "1.9.22" apply false
}
repositories {
mavenCentral()
}
allprojects {
apply(plugin ="maven-publish")
repositories {
mavenLocal()
mavenCentral()
maven {
name = "ags-mvn-Releases"
url = uri("https://mvn.animegameservers.org/releases")
}
}
dependencies {
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
publishing {
repositories {
maven {
name = "agsmvnrelease"
url = uri("https://mvn.animegameservers.org/releases")
credentials(PasswordCredentials::class)
authentication {
create<BasicAuthentication>("basic")
}
}
}
}
}