anime-game-multi-proto/build.gradle.kts
hartie95 09d642b2eb [Refactoring] Moved the base interfaces from the gi module into a new core module
* Also updated the kotlin version to 1.9.24
* Made resource folder detection a little bit less hacky
* Updated .gitignore
2024-08-03 15:44:31 +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.24" 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")
}
}
}
}
}