[FIX] Уменьшен размер лаунчера за счет использования только необходимых частей Netty

This commit is contained in:
Gravit 2019-05-31 05:51:02 +07:00
parent 592a6daa03
commit fe60d6b234
No known key found for this signature in database
GPG key ID: 061981E1E85D3216
3 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ pack project(':LauncherAuthlib')
bundle 'com.jfoenix:jfoenix:8.0.8' bundle 'com.jfoenix:jfoenix:8.0.8'
bundle 'de.jensd:fontawesomefx:8.9' bundle 'de.jensd:fontawesomefx:8.9'
bundle 'org.apache.httpcomponents:httpclient:4.5.7' bundle 'org.apache.httpcomponents:httpclient:4.5.7'
pack 'io.netty:netty-all:4.1.36.Final' pack 'io.netty:netty-codec-http:4.1.36.Final'
pack 'org.ow2.asm:asm-tree:7.1' pack 'org.ow2.asm:asm-tree:7.1'
} }

View file

@ -4,5 +4,5 @@
dependencies { dependencies {
compile project(':LauncherCore') compile project(':LauncherCore')
compileOnly 'org.apache.httpcomponents:httpclient:4.5.7' compileOnly 'org.apache.httpcomponents:httpclient:4.5.7'
compileOnly 'io.netty:netty-all:4.1.36.Final' compileOnly 'io.netty:netty-codec-http:4.1.36.Final'
} }

View file

@ -29,7 +29,7 @@
dependencies { dependencies {
pack project(':LauncherAuthlib') pack project(':LauncherAuthlib')
pack 'org.apache.httpcomponents:httpclient:4.5.7' pack 'org.apache.httpcomponents:httpclient:4.5.7'
pack 'io.netty:netty-all:4.1.36.Final' pack 'io.netty:netty-codec-http:4.1.36.Final'
} }
shadowJar { shadowJar {