Skip to content

Commit b75bcc4

Browse files
committed
adapts to QuPath 0.7
1 parent 1a3f7c8 commit b75bcc4

4 files changed

Lines changed: 9 additions & 12 deletions

File tree

.github/workflows/maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- uses: actions/setup-java@v4
1919
with:
20-
java-version: '21'
20+
java-version: '25'
2121
distribution: 'temurin'
2222

2323
- name: Setup Gradle
@@ -33,7 +33,7 @@ jobs:
3333
if: ${{ inputs.release }}
3434
shell: bash
3535
run: |
36-
./gradlew publish -Ptoolchain=21 -Prelease ${{ inputs.gradle-args }}
36+
./gradlew publish -Ptoolchain=25 -Prelease ${{ inputs.gradle-args }}
3737
env:
3838
MAVEN_USER: ${{ secrets.MAVEN_USER }}
3939
MAVEN_PASS: ${{ secrets.MAVEN_PASS }}
@@ -42,7 +42,7 @@ jobs:
4242
if: ${{ inputs.release == false }}
4343
shell: bash
4444
run: |
45-
./gradlew publish -Ptoolchain=21 ${{ inputs.gradle-args }}
45+
./gradlew publish -Ptoolchain=25 ${{ inputs.gradle-args }}
4646
env:
4747
MAVEN_USER: ${{ secrets.MAVEN_USER }}
4848
MAVEN_PASS: ${{ secrets.MAVEN_PASS }}

build.gradle.kts

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,19 @@ plugins {
1010
qupathExtension {
1111
name = "qupath-extension-abba"
1212
group = "qupath.ext.biop.abba"
13-
version = "0.4.0"
13+
version = "0.5.0"
1414
description = "QuPath extension to use Aligning Big Brain and Atlases"
1515
automaticModule = "qupath.ext.biop.abba"
1616
}
1717

1818
dependencies {
19-
// Main dependencies for most QuPath extensions
2019
implementation(libs.bundles.qupath)
2120
implementation(libs.qupath.fxtras)
22-
implementation("commons-io:commons-io:2.11.0")
23-
implementation("net.imglib2:imglib2-realtransform:3.1.2")
24-
implementation("qupath.ext.warpy:qupath-extension-warpy:0.4.2")
21+
implementation("commons-io:commons-io:2.15.0")
22+
implementation("net.imglib2:imglib2-realtransform:4.0.4")
23+
implementation("qupath.ext.warpy:qupath-extension-warpy:0.5.0")
2524
}
2625

27-
28-
2926
publishing {
3027
repositories {
3128
maven {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pluginManagement {
99

1010
// TODO: Specify which version of QuPath the extension is targeting here
1111
qupath {
12-
version = "0.6.0"
12+
version = "0.7.0"
1313
}
1414

1515
// Apply QuPath Gradle settings plugin to handle configuration

0 commit comments

Comments
 (0)