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 5
5
<parent >
6
6
<groupId >org.scijava</groupId >
7
7
<artifactId >pom-scijava</artifactId >
8
- <version >23.1.1 </version >
8
+ <version >23.2.0 </version >
9
9
<relativePath />
10
10
</parent >
11
11
12
12
<artifactId >batch-processor</artifactId >
13
- <version >0.2.1 -SNAPSHOT</version >
13
+ <version >0.3.0 -SNAPSHOT</version >
14
14
15
15
<name >Batch Processor</name >
16
16
<description >A Batch Processor for SciJava Modules and Scripts</description >
98
98
<artifactId >scijava-common</artifactId >
99
99
</dependency >
100
100
<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 >
104
103
</dependency >
105
104
<dependency >
106
105
<groupId >org.scijava</groupId >
Original file line number Diff line number Diff line change 37
37
import java .util .concurrent .Future ;
38
38
import java .util .stream .Collectors ;
39
39
40
- import net .imagej .table .Column ;
41
- import net .imagej .table .DefaultGenericTable ;
42
- import net .imagej .table .Table ;
43
-
44
40
import org .scijava .ItemIO ;
45
41
import org .scijava .command .Command ;
46
42
import org .scijava .command .DynamicCommand ;
52
48
import org .scijava .module .MutableModuleItem ;
53
49
import org .scijava .plugin .Parameter ;
54
50
import 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;
56
55
57
56
@ Plugin (type = Command .class , label = "Choose batch processing parameters" , initializer = "initInputChoice" )
58
57
public class ModuleBatchProcessor <T > extends DynamicCommand {
Original file line number Diff line number Diff line change 39
39
import java .util .List ;
40
40
import java .util .concurrent .ExecutionException ;
41
41
42
- import net .imagej .table .Table ;
43
-
44
42
import org .junit .After ;
45
43
import org .junit .Before ;
46
44
import org .junit .Test ;
53
51
import org .scijava .module .ModuleService ;
54
52
import org .scijava .script .ScriptInfo ;
55
53
import org .scijava .service .SciJavaService ;
54
+ import org .scijava .table .Table ;
56
55
57
56
public class BatchServiceTest {
58
57
You can’t perform that action at this time.
0 commit comments