forked from qupath/qupath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
39 lines (31 loc) · 1007 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
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0' // to download if needed
}
gradle.ext.qupathVersion = "0.5.0-SNAPSHOT"
rootProject.name = 'qupath'
// Main application
include 'qupath-app'
// Core modules
include 'qupath-core'
include 'qupath-core-processing'
include 'qupath-gui-fx'
// Core extension
include 'qupath-extension-processing'
// Extra extensions
include 'qupath-extension-svg'
include 'qupath-extension-script-editor'
include 'qupath-extension-openslide'
include 'qupath-extension-bioformats'
// Support JavaFX dependency override
// This can be used to create a build for older versions of macOS
dependencyResolutionManagement {
versionCatalogs {
libs {
def javafxOverride = System.properties.getOrDefault('javafx-version', null)
if (javafxOverride) {
println "Overriding JavaFX version to request $javafxOverride"
version('javafx', javafxOverride)
}
}
}
}