Skip to content

Commit

Permalink
Adjusting module names
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSNelson committed Dec 20, 2023
1 parent aae8d66 commit 0698db9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ plugins {
id 'maven-publish'
}

// TODO: Change the module name
ext.moduleName = 'io.github.qupath.extension.BasicStitchingExtension'
// Change the module name
ext.moduleName = 'qupath.extension.BasicStitchingExtension'
group = 'qupath.ext.basicstitching'
// TODO: Define the extension version & provide a short description
version = "0.1.0"
Expand Down Expand Up @@ -141,7 +141,7 @@ tasks.named('test') {
// within QuPath itself (which is useful during development).
repositories {
// Add this if you need access to dependencies only installed locally
// mavenLocal()
// mavenLocal()

mavenCentral()

Expand Down
7 changes: 5 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ pluginManagement {
}
}

// TODO: Name your QuPath extension here!
// Name your QuPath extension here!
rootProject.name = 'BasicStitching'

// TODO: Define the QuPath version compatible with the extension
// Define the QuPath version compatible with the extension
// Note that the QuPath API isn't stable; something designed for
// 0.X.a should work with 0.X.b, but not necessarily with 0.Y.a.
gradle.ext.qupathVersion = "0.4.4"
Expand All @@ -37,6 +37,9 @@ dependencyResolutionManagement {
maven {
url "https://maven.scijava.org/content/repositories/snapshots"
}
maven {
url "https://maven.scijava.org/content/groups/public"
}

}
}

0 comments on commit 0698db9

Please sign in to comment.