[ANY] libLauncher перемещён в LauncherAPI.

This commit is contained in:
zaxar163 2019-05-25 18:00:11 +03:00
parent bcb65726af
commit 156c7f6c61
No known key found for this signature in database
GPG key ID: E3B309DD3852DE06
63 changed files with 5 additions and 12 deletions

View file

@ -41,7 +41,6 @@
} }
dependencies { dependencies {
pack project(':libLauncher')
pack project(':LauncherAPI') pack project(':LauncherAPI')
bundle project(':Radon') bundle project(':Radon')
bundle 'mysql:mysql-connector-java:8.0.16' bundle 'mysql:mysql-connector-java:8.0.16'

View file

@ -2,7 +2,11 @@
targetCompatibility = '1.8' targetCompatibility = '1.8'
dependencies { dependencies {
compile project(':libLauncher') compile 'com.google.code.gson:gson:2.8.5'
compileOnly 'org.fusesource.jansi:jansi:1.18'
compileOnly 'org.jline:jline:3.11.0'
compileOnly 'org.jline:jline-reader:3.11.0'
compileOnly 'org.jline:jline-terminal:3.11.0'
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-all:4.1.36.Final'
} }

View file

@ -1,10 +0,0 @@
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
dependencies {
compileOnly 'org.fusesource.jansi:jansi:1.18'
compileOnly 'org.jline:jline:3.11.0'
compileOnly 'org.jline:jline-reader:3.11.0'
compileOnly 'org.jline:jline-terminal:3.11.0'
compile 'com.google.code.gson:gson:2.8.5'
}