File tree Expand file tree Collapse file tree 3 files changed +9
-12
lines changed
main/java/org/scijava/batch
test/java/org/scijava/batch Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Original file line number Diff line number Diff line change 55 <parent >
66 <groupId >org.scijava</groupId >
77 <artifactId >pom-scijava</artifactId >
8- <version >23.1.1 </version >
8+ <version >23.2.0 </version >
99 <relativePath />
1010 </parent >
1111
1212 <artifactId >batch-processor</artifactId >
13- <version >0.2.1 -SNAPSHOT</version >
13+ <version >0.3.0 -SNAPSHOT</version >
1414
1515 <name >Batch Processor</name >
1616 <description >A Batch Processor for SciJava Modules and Scripts</description >
9898 <artifactId >scijava-common</artifactId >
9999 </dependency >
100100 <dependency >
101- <!-- TODO: remove this dependency when table support moved to SciJava -->
102- <groupId >net.imagej</groupId >
103- <artifactId >imagej-common</artifactId >
101+ <groupId >org.scijava</groupId >
102+ <artifactId >scijava-table</artifactId >
104103 </dependency >
105104 <dependency >
106105 <groupId >org.scijava</groupId >
Original file line number Diff line number Diff line change 3737import java .util .concurrent .Future ;
3838import java .util .stream .Collectors ;
3939
40- import net .imagej .table .Column ;
41- import net .imagej .table .DefaultGenericTable ;
42- import net .imagej .table .Table ;
43-
4440import org .scijava .ItemIO ;
4541import org .scijava .command .Command ;
4642import org .scijava .command .DynamicCommand ;
5248import org .scijava .module .MutableModuleItem ;
5349import org .scijava .plugin .Parameter ;
5450import org .scijava .plugin .Plugin ;
55- import org .scijava .widget .FileWidget ;
51+ import org .scijava .table .Column ;
52+ import org .scijava .table .DefaultGenericTable ;
53+ import org .scijava .table .Table ;
54+ //import org.scijava.widget.FileWidget;
5655
5756@ Plugin (type = Command .class , label = "Choose batch processing parameters" , initializer = "initInputChoice" )
5857public class ModuleBatchProcessor <T > extends DynamicCommand {
Original file line number Diff line number Diff line change 3939import java .util .List ;
4040import java .util .concurrent .ExecutionException ;
4141
42- import net .imagej .table .Table ;
43-
4442import org .junit .After ;
4543import org .junit .Before ;
4644import org .junit .Test ;
5351import org .scijava .module .ModuleService ;
5452import org .scijava .script .ScriptInfo ;
5553import org .scijava .service .SciJavaService ;
54+ import org .scijava .table .Table ;
5655
5756public class BatchServiceTest {
5857
You can’t perform that action at this time.
0 commit comments