diff --git a/.gitmodules b/.gitmodules index f70ed106..8d20570a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "modules"] path = modules url = git@github.com:GravitLauncher/LauncherModules.git +[submodule "Radon"] + path = Radon + url = git@github.com:GravitLauncher/Radon.git diff --git a/LaunchServer/build.gradle b/LaunchServer/build.gradle index 9f58b2b9..5ca9ff1b 100644 --- a/LaunchServer/build.gradle +++ b/LaunchServer/build.gradle @@ -8,6 +8,9 @@ maven { url "https://oss.sonatype.org/content/repositories/snapshots" } + maven { + url 'http://oss.sonatype.org/content/groups/public' + } } sourceCompatibility = '1.8' @@ -38,8 +41,7 @@ dependencies { pack project(':libLauncher') - bundle 'org.ow2.asm:asm-commons:7.0' - bundle 'org.ow2.asm:asm-util:7.0' + bundle project(':Radon') bundle 'mysql:mysql-connector-java:8.0.13' bundle 'jline:jline:2.14.6' bundle 'net.sf.proguard:proguard-base:6.0.3' diff --git a/Radon b/Radon new file mode 160000 index 00000000..d8ec3cca --- /dev/null +++ b/Radon @@ -0,0 +1 @@ +Subproject commit d8ec3cca611b3daf69e209f05fd97c703ffb530c diff --git a/settings.gradle b/settings.gradle index 3fc709d9..234a8355 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,6 +1,7 @@ rootProject.name = 'GravitLauncher' include 'Launcher' +include 'Radon' include 'libLauncher' include 'LauncherAPI' include 'ServerWrapper'