forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
29 lines (24 loc) · 904 Bytes
/
settings.gradle.kts
File metadata and controls
29 lines (24 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pluginManagement {
resolutionStrategy {
eachPlugin {
// Hint from https://github.com/jitpack/jitpack.io/issues/1459#issuecomment-1279851731
// Updated solution at https://github.com/foodiestudio/convention-plugins?tab=readme-ov-file#convention-plugins
if (requested.id.id.startsWith("com.github.koppor")) {
// This is https://github.com/java9-modularity/gradle-modules-plugin/pull/282
useModule("com.github.koppor:gradle-modules-plugin:1.8.15-cmd-1")
}
}
}
repositories {
maven {
url = uri("https://jitpack.io")
}
gradlePluginPortal()
}
includeBuild("build-logic")
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0"
}
rootProject.name = "JabRef"
include("jablib", "jabkit", "jabgui", "jabsrv", "test-support")