-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
46 lines (35 loc) · 1.17 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
43
44
45
46
// SPDX-FileCopyrightText: 2024 Carlo Castoldi <[email protected]>
//
// SPDX-License-Identifier: CC0-1.0
/** 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)
**/
pluginManagement {
plugins {
// Include this plugin to avoid downloading JavaCPP dependencies for all platforms
id "org.bytedeco.gradle-javacpp-platform" version "1.5.9"
}
}
rootProject.name = "qupath-extension-braian"
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 {
mavenLocal()
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"
}
}
}