mirror of
https://github.com/Anime-Game-Servers/anime-game-multi-proto.git
synced 2024-11-23 12:39:42 +00:00
09d642b2eb
* Also updated the kotlin version to 1.9.24 * Made resource folder detection a little bit less hacky * Updated .gitignore
42 lines
968 B
Plaintext
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")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |