MCProtocolLib/settings.gradle.kts
Alex 471e92ec6a
Replace MCAuth with RK_01 MinecraftAuth (#795)
* Initial work on moving over mcauth

* Initial work on importing MinecraftAuth

* Make compile

* Remove extra headers code

* Switch to different http utils

* Merge changes

* Cleanup

* Remove unused exceptions and constructors

* Implement proxies

* Fixup proxy stuff

* Cleanup

* Remove SR license header

* Remove custom exceptions

* Move auth into main module

Auth has become so small that it's not worth keeping separate

* Make ProxyInfo be part of network again

* Fix indent

* Allow null id and name in GameProfile

* Fix remaining logs

* Make texture checker more accurate

* Fix spaces

* Update dependencies

* Remove usage of var

* Use faster approach for reading raw uuids.
2024-06-17 13:23:42 -07:00

23 lines
520 B
Text

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositories {
maven("https://repo.opencollab.dev/maven-releases/") {
name = "opencollab-releases"
}
maven("https://repo.opencollab.dev/maven-snapshots/") {
name = "opencollab-snapshots"
}
maven("https://jitpack.io") {
name = "jitpack"
}
mavenCentral()
}
}
rootProject.name = "mcprotocollib"
include(
"protocol",
"example"
)