gradle: improve repository searching speed
This commit is contained in:
@@ -68,9 +68,30 @@ subprojects {
|
|||||||
mavenLocal()
|
mavenLocal()
|
||||||
jcenter()
|
jcenter()
|
||||||
maven(url = "https://mvnrepository.com/artifact")
|
maven(url = "https://mvnrepository.com/artifact")
|
||||||
maven(url = "https://repo.runelite.net")
|
|
||||||
maven(url = "https://raw.githubusercontent.com/open-osrs/hosting/master")
|
|
||||||
maven(url = "https://jitpack.io")
|
maven(url = "https://jitpack.io")
|
||||||
|
|
||||||
|
exclusiveContent {
|
||||||
|
forRepository {
|
||||||
|
maven {
|
||||||
|
url = uri("https://repo.runelite.net")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
filter {
|
||||||
|
includeGroup("net.runelite.rs")
|
||||||
|
includeModule("net.runelite", "discord")
|
||||||
|
includeModule("net.runelite", "orange-extensions")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exclusiveContent {
|
||||||
|
forRepository {
|
||||||
|
maven {
|
||||||
|
url = uri("https://raw.githubusercontent.com/open-osrs/hosting/master")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
filter {
|
||||||
|
includeModule("net.runelite", "fernflower")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
apply<JavaLibraryPlugin>()
|
apply<JavaLibraryPlugin>()
|
||||||
|
|||||||
Reference in New Issue
Block a user