gradle: Update gradle dependencies
This commit is contained in:
committed by
Owain van Brakel
parent
3fb8e68109
commit
8a696b9a25
@@ -35,14 +35,14 @@ buildscript {
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.ajoberstar.grgit:grgit-core:4.1.0")
|
||||
classpath("com.github.ben-manes:gradle-versions-plugin:0.34.0")
|
||||
classpath("com.github.ben-manes:gradle-versions-plugin:0.36.0")
|
||||
classpath("com.openosrs:injector-plugin:1.1.7")
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id("com.adarshr.test-logger") version "2.1.1" apply false
|
||||
id("com.github.ben-manes.versions") version "0.34.0"
|
||||
id("com.github.ben-manes.versions") version "0.36.0"
|
||||
id("se.patrikerdes.use-latest-versions") version "0.2.15"
|
||||
id("org.ajoberstar.grgit") version "4.1.0"
|
||||
id("com.simonharrer.modernizer") version "2.1.0-1" apply false
|
||||
|
||||
@@ -39,7 +39,7 @@ description = "RuneLite Client"
|
||||
|
||||
dependencies {
|
||||
annotationProcessor(group = "org.projectlombok", name = "lombok", version = "1.18.16")
|
||||
annotationProcessor(group = "org.pf4j", name = "pf4j", version = "3.4.1")
|
||||
annotationProcessor(group = "org.pf4j", name = "pf4j", version = "3.5.0")
|
||||
|
||||
api(project(":runelite-api"))
|
||||
|
||||
@@ -64,13 +64,13 @@ dependencies {
|
||||
implementation(group = "org.apache.commons", name = "commons-text", version = "1.9")
|
||||
implementation(group = "commons-io", name = "commons-io", version = "2.8.0")
|
||||
implementation(group = "org.jetbrains", name = "annotations", version = "20.1.0")
|
||||
implementation(group = "org.jooq", name = "jooq", version = "3.14.1")
|
||||
implementation(group = "org.jooq", name = "jooq-codegen", version = "3.14.1")
|
||||
implementation(group = "org.jooq", name = "jooq-meta", version = "3.14.1")
|
||||
implementation(group = "io.sentry", name = "sentry-logback", version = "3.1.2")
|
||||
implementation(group = "org.jooq", name = "jooq", version = "3.14.2")
|
||||
implementation(group = "org.jooq", name = "jooq-codegen", version = "3.14.2")
|
||||
implementation(group = "org.jooq", name = "jooq-meta", version = "3.14.2")
|
||||
implementation(group = "io.sentry", name = "sentry-logback", version = "3.1.3")
|
||||
implementation(group = "com.github.zafarkhaja", name = "java-semver", version = "0.9.0")
|
||||
implementation(group = "org.slf4j", name = "slf4j-api", version = "1.7.30")
|
||||
implementation(group = "org.pf4j", name = "pf4j", version = "3.4.1") {
|
||||
implementation(group = "org.pf4j", name = "pf4j", version = "3.5.0") {
|
||||
exclude(group = "org.slf4j")
|
||||
}
|
||||
implementation(group = "org.pf4j", name = "pf4j-update", version = "2.3.0")
|
||||
|
||||
@@ -120,10 +120,14 @@ class ExternalPf4jPluginManager extends DefaultPluginManager
|
||||
@Override
|
||||
public void loadPlugins()
|
||||
{
|
||||
if (Files.notExists(pluginsRoot) || !Files.isDirectory(pluginsRoot))
|
||||
for (Path path : pluginsRoots)
|
||||
{
|
||||
log.warn("No '{}' root", pluginsRoot);
|
||||
return;
|
||||
if (Files.notExists(path) || !Files.isDirectory(path))
|
||||
{
|
||||
log.warn("No '{}' root", path);
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
List<Path> pluginPaths = pluginRepository.getPluginPaths();
|
||||
@@ -153,7 +157,7 @@ class ExternalPf4jPluginManager extends DefaultPluginManager
|
||||
{
|
||||
if (!ExternalPluginManager.isDevelopmentMode())
|
||||
{
|
||||
String plugin = pluginPath.toString().substring(pluginsRoot.toString().length() + 1);
|
||||
String plugin = pluginPath.toString().substring(pluginsRoots.get(0).toString().length() + 1);
|
||||
duplicatePlugins.add(plugin);
|
||||
}
|
||||
log.error("Could not load plugin {}", pluginPath, e);
|
||||
|
||||
Reference in New Issue
Block a user