-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.gradle
42 lines (33 loc) · 1.2 KB
/
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
39
40
41
42
pluginManagement {
plugins {
// Gradle is awkward about declaring versions for plugins
// Specifying it here, rather than build.gradle, makes it possible
// to include the extension as a subproject of QuPath itself
// (which is useful during development)
id 'org.bytedeco.gradle-javacpp-platform' version '1.5.9'
}
}
// TODO: Name your QuPath extension here!
rootProject.name = 'my-qupath-extension'
// TODO: Define the QuPath version compatible with the extension
// Note that the QuPath API isn't stable; something designed for
// 0.X.a should work with 0.X.b, but not necessarily with 0.Y.a.
gradle.ext.qupathVersion = "0.5.0"
dependencyResolutionManagement {
// Access QuPath's version catalog for dependency versions
versionCatalogs {
libs {
from("io.github.qupath:qupath-catalog:${gradle.ext.qupathVersion}")
}
}
repositories {
mavenCentral()
// Add scijava - which is where QuPath's jars are hosted
maven {
url "https://maven.scijava.org/content/repositories/releases"
}
maven {
url "https://maven.scijava.org/content/repositories/snapshots"
}
}
}