project: Bump injector and rxrelay

This commit is contained in:
Owain van Brakel
2020-05-02 16:20:43 +02:00
parent 4f25c15448
commit 90b8445e23
2 changed files with 14 additions and 5 deletions

View File

@@ -35,7 +35,7 @@ buildscript {
dependencies {
classpath("org.ajoberstar.grgit:grgit-core:4.0.2")
classpath("com.github.ben-manes:gradle-versions-plugin:0.28.0")
classpath("com.openosrs:injector-plugin:1.1.0")
classpath("com.openosrs:injector-plugin:1.1.2")
}
}
@@ -66,9 +66,17 @@ allprojects {
subprojects {
repositories {
if (System.getenv("JITPACK") != null)
if (System.getenv("JITPACK") != null) {
mavenLocal()
jcenter()
}
jcenter {
content {
excludeGroupByRegex("com\\.openosrs.*")
excludeGroupByRegex("com\\.runelite.*")
}
}
exclusiveContent {
forRepository {
maven {
@@ -80,7 +88,6 @@ subprojects {
includeModule("com.github.petitparser", "java-petitparser")
}
}
maven(url = "https://mvnrepository.com/artifact")
exclusiveContent {
forRepository {
@@ -105,6 +112,8 @@ subprojects {
includeModule("com.openosrs.rxrelay3", "rxrelay")
}
}
maven(url = "https://mvnrepository.com/artifact")
}
apply<JavaLibraryPlugin>()

View File

@@ -52,7 +52,7 @@ dependencies {
implementation(group = "com.google.guava", name = "guava", version = "29.0-jre")
implementation(group = "com.google.inject", name = "guice", version = "4.2.3", classifier = "no_aop")
implementation(group = "com.h2database", name = "h2", version = "1.4.200")
implementation(group = "com.openosrs.rxrelay3", name = "rxrelay", version = "3.0.0-SNAPSHOT")
implementation(group = "com.openosrs.rxrelay3", name = "rxrelay", version = "3.0.1-SNAPSHOT")
implementation(group = "com.squareup.okhttp3", name = "okhttp", version = "4.6.0")
implementation(group = "io.reactivex.rxjava3", name = "rxjava", version = "3.0.3")
implementation(group = "net.java.dev.jna", name = "jna", version = "5.5.0")