File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
src/main/java/sc/iview/commands/file Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -67,9 +67,6 @@ dependencies {
67
67
68
68
// SciJava dependencies
69
69
70
- implementation(" org.yaml:snakeyaml" ) {
71
- version { strictly(" 1.33" ) }
72
- }
73
70
implementation(" org.scijava:scijava-common" )
74
71
implementation(" org.scijava:ui-behaviour" )
75
72
implementation(" org.scijava:script-editor" )
@@ -118,12 +115,11 @@ dependencies {
118
115
implementation(" org.janelia.saalfeldlab:n5" )
119
116
implementation(" org.janelia.saalfeldlab:n5-hdf5" )
120
117
implementation(" sc.fiji:spim_data" )
121
- implementation(" org.slf4j:slf4j-simple" )
122
118
123
119
implementation(platform(kotlin(" bom" )))
124
120
implementation(kotlin(" stdlib-jdk8" ))
125
121
testImplementation(kotlin(" test-junit" ))
126
- testImplementation(" org.slf4j:slf4j-simple" )
122
+ testImplementation(" org.slf4j:slf4j-simple:2.0.16 " )
127
123
128
124
implementation(" sc.fiji:bigdataviewer-core" )
129
125
implementation(" sc.fiji:bigdataviewer-vistools" )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ jvmTarget=21
4
4
# useLocalScenery=true
5
5
kotlinVersion =1.9.23
6
6
dokkaVersion =1.9.10
7
- scijavaParentPOMVersion =37 .0.0
7
+ scijavaParentPOMVersion =40 .0.0
8
8
version =0.4.1-SNAPSHOT
9
9
10
10
# update site configuration
Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ class OpenN5 : DynamicCommand() {
138
138
DataType .FLOAT32 -> N5Utils .openVolatile<FloatType >(reader, dataset)
139
139
DataType .FLOAT64 -> N5Utils .openVolatile<DoubleType >(reader, dataset)
140
140
DataType .OBJECT -> TODO ()
141
+ DataType .STRING -> TODO ()
141
142
null -> TODO ()
142
143
}
143
144
You can’t perform that action at this time.
0 commit comments