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
32 lines (29 loc) · 875 Bytes
/
settings.gradle.kts
File metadata and controls
32 lines (29 loc) · 875 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
30
31
32
pluginManagement {
includeBuild("build-logic")
// get jitpack running
// see https://github.com/jitpack/jitpack.io/issues/1459
resolutionStrategy {
eachPlugin {
requested.apply {
// com.github.andygoossens is non-jitpack; therefore stronger id check
if ("$id".startsWith("com.github.koppor")) {
val (_, _, user, name) = "$id".split(".", limit = 4)
useModule("com.github.$user:$name:$version")
}
}
}
}
repositories {
gradlePluginPortal()
maven("https://jitpack.io")
}
}
plugins {
id("org.jabref.gradle.build")
}
rootProject.name = "JabRef"
javaModules {
directory(".")
versions("versions")
// include("jablib", "jabkit", "jabgui", "jabsrv", "jabsrv-cli", "test-support", "versions")
}