-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
38 lines (29 loc) · 965 Bytes
/
settings.gradle
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
33
34
35
36
37
38
/*
* Gradle settings, including the QuPath version to use with scripts.
*/
rootProject.name = 'qupath-scripts'
// Define the QuPath version to use
gradle.ext.qupathVersion = "0.5.1"
dependencyResolutionManagement {
repositories {
// Use Maven Central for dependencies
mavenCentral()
// Use SciJava releases for current QuPath jars
maven {
name "SciJava releases"
url "https://maven.scijava.org/content/repositories/releases"
}
// Use SciJava snapshots if necessary
maven {
name "SciJava snapshots"
url "https://maven.scijava.org/content/repositories/snapshots"
}
}
// Access the QuPath version catelog so that extra dependencies
// can be added, using the same versions as for QuPath itself
versionCatalogs {
libs {
from("io.github.qupath:qupath-catalog:${gradle.ext.qupathVersion}")
}
}
}