[ANY] Выделение Request методов отдельно от AuthLib

This commit is contained in:
Gravit 2019-05-03 20:35:14 +07:00
parent 9b622e8391
commit 7ac537fa40
No known key found for this signature in database
GPG key ID: 061981E1E85D3216
28 changed files with 10 additions and 2 deletions

8
LauncherAPI/build.gradle Normal file
View file

@ -0,0 +1,8 @@
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
dependencies {
compile project(':libLauncher')
compileOnly 'org.apache.httpcomponents:httpclient:4.5.7'
compileOnly 'io.netty:netty-all:4.1.32.Final'
}

View file

@ -2,8 +2,7 @@
targetCompatibility = '1.8'
dependencies {
compile project(':libLauncher')
compileOnly 'io.netty:netty-all:4.1.32.Final'
compile project(':LauncherAPI')
compileOnly 'org.apache.httpcomponents:httpclient:4.5.7'
compileOnly 'com.google.guava:guava:26.0-jre'
compile files('../compat/authlib/authlib-clean.jar')

View file

@ -3,6 +3,7 @@
include 'Launcher'
include 'Radon'
include 'libLauncher'
include 'LauncherAPI'
include 'LauncherAuthlib'
include 'ServerWrapper'
include 'LaunchServer'