-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
37 lines (29 loc) · 1004 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
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'
}
}
rootProject.name = 'qupath-extension-py4j'
gradle.ext.qupathVersion = "0.6.0-SNAPSHOT"
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"
}
}
}