Added api as a dependency to other non-common modules

This commit is contained in:
Rsl1122 2019-09-26 11:14:46 +03:00
parent c0827bd407
commit 2fb979fc95
4 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,7 @@
dependencies {
compile project(path: ":common", configuration: 'shadow')
compileOnly project(":api")
compile "com.djrapitops:AbstractPluginFramework-bukkit:$abstractPluginFrameworkVersion"
compile "org.bstats:bstats-bukkit:$bstatsVersion"

View File

@ -1,5 +1,6 @@
dependencies {
compile project(path: ":common", configuration: 'shadow')
compileOnly project(":api")
compile "com.djrapitops:AbstractPluginFramework-bungeecord:$abstractPluginFrameworkVersion"
compile "org.bstats:bstats-bungeecord:$bstatsVersion"

View File

@ -1,6 +1,7 @@
dependencies {
compile project(path: ":common", configuration: 'shadow')
compileOnly project(":api")
compile "com.djrapitops:AbstractPluginFramework-sponge:$abstractPluginFrameworkVersion"
compile "org.bstats:bstats-sponge:$bstatsVersion"

View File

@ -1,5 +1,7 @@
dependencies {
compile project(path: ":common", configuration: 'shadow')
compileOnly project(":api")
compile "com.djrapitops:AbstractPluginFramework-velocity:$abstractPluginFrameworkVersion"
compileOnly "com.velocitypowered:velocity-api:$velocityVersion"