Skip to content

Commit

Permalink
Adjusting version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSNelson committed Dec 20, 2023
1 parent d880c4d commit 6c1e859
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Binary file modified .gradle/7.5.1/checksums/checksums.lock
Binary file not shown.
Binary file modified .gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock
Binary file not shown.
Binary file modified .gradle/7.5.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/file-system.probe
Binary file not shown.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ plugins {
id 'org.bytedeco.gradle-javacpp-platform'
}

// TODO: Change the module name
ext.moduleName = 'io.github.qupath.extension.qp_scope'
//the module name
ext.moduleName = 'qupath.extension.qp_scope'

// TODO: Define the extension version & provide a short description
version = "0.4.4"
//Define the extension version & provide a short description
version = "0.1.0"
description = 'A basic QuPath extension for stitching.'

// TODO: Specify the QuPath version, compatible with the extension.
Expand Down Expand Up @@ -42,7 +42,7 @@ dependencies {
shadow "io.github.qupath:qupath-gui-fx:${qupathVersion}"
//Access to BioFormats extension for writing ome.tif files
implementation "io.github.qupath:qupath-extension-bioformats:${qupathVersion}"
//implementation "qupath.ext.basicstitching:BasicStitching:${qupathVersion}"
implementation "qupath.ext.basicstitching:BasicStitching:0.1.0"

//TODO figure out syntax for other plugins
// For logging - the version comes from QuPath's version catalog at
Expand Down Expand Up @@ -140,11 +140,11 @@ tasks.named('test') {
repositories {
// Add this if you need access to dependencies only installed locally
mavenLocal()
/*

flatDir{
dirs 'C:/ImageAnalysis/QPExtensionTest/BasicStitching/build/libs'
}
*/

mavenCentral()

// Add scijava - which is where QuPath's jars are hosted
Expand Down
4 changes: 2 additions & 2 deletions build/tmp/jar/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Manifest-Version: 1.0
Implementation-Title: qp_scope
Implementation-Version: 0.4.4
Automatic-Module-Name: io.github.qupath.extension.qp_scope
Implementation-Version: 0.1.0
Automatic-Module-Name: qupath.extension.qp_scope

0 comments on commit 6c1e859

Please sign in to comment.