-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0162587
commit 6aa7f92
Showing
6 changed files
with
39 additions
and
85 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
plugins { | ||
id("qupath-conventions") | ||
} | ||
|
||
qupathExtension { | ||
name = "qupath-extension-align" | ||
version = "0.5.0-SNAPSHOT" | ||
group = "io.github.qupath" | ||
description = "QuPath extension for interactive image alignment" | ||
automaticModule = "qupath.extension.align" | ||
} | ||
|
||
dependencies { | ||
|
||
implementation(libs.bundles.qupath) | ||
implementation(libs.bundles.logging) | ||
|
||
// For testing | ||
testImplementation(libs.junit) | ||
|
||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
pluginManagement { | ||
repositories { | ||
gradlePluginPortal() | ||
maven { | ||
url = uri("https://maven.scijava.org/content/repositories/releases") | ||
} | ||
} | ||
} | ||
|
||
qupath { | ||
version = "0.5.0" | ||
} | ||
|
||
// Apply QuPath Gradle settings plugin to handle configuration | ||
plugins { | ||
id("io.github.qupath.qupath-extension-settings") version "0.2.1" | ||
} |