File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
scijava-ops-engine/src/main/java
org/scijava/ops/engine/impl
scijava-ops-ext-parser/src/main/java
scijava-types/src/main/java Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 4848 requires org .scijava .ops .spi ;
4949 requires org .scijava .types ;
5050
51+ requires com .google .common ;
5152 requires org .javassist ;
5253 requires org .slf4j ;
5354 requires org .yaml .snakeyaml ;
Original file line number Diff line number Diff line change @@ -95,8 +95,7 @@ public class DefaultOpEnvironment implements OpEnvironment {
9595 * search size for any Op request to the number of known Ops with the name
9696 * given in the request.
9797 */
98- private final TreeMultimap <String , OpInfo > opDirectory = TreeMultimap
99- .create ();
98+ private final TreeMultimap <String , OpInfo > opDirectory = TreeMultimap .create ();
10099
101100 /**
102101 * Data structure storing all known Ops, discoverable using their id.
Original file line number Diff line number Diff line change 2929
3030module org .scijava .ops .parser {
3131 requires java .compiler ;
32- requires org .yaml .snakeyaml ;
3332 requires com .google .common ;
33+ requires org .yaml .snakeyaml ;
3434}
Original file line number Diff line number Diff line change 183183 <groupId >org.apache.maven.plugins</groupId >
184184 <artifactId >maven-surefire-plugin</artifactId >
185185 <configuration >
186- <argLine >--add-reads org.scijava.ops.opencv=org.scijava.ops.api</argLine >
186+ <argLine >--add-reads org.scijava.ops.opencv=org.scijava.ops.api,net.imglib2 </argLine >
187187 </configuration >
188188 </plugin >
189189 </plugins >
Original file line number Diff line number Diff line change 3636 opens org .scijava .types .extract ;
3737 exports org .scijava .types .extract ;
3838
39- requires transitive com .google .common ;
4039 requires transitive org .scijava .common3 ;
4140 requires transitive org .scijava .discovery ;
4241 requires org .scijava .priority ;
4342
43+ requires com .google .common ;
4444 requires org .slf4j ;
4545
4646 uses org .scijava .types .extract .TypeExtractor ;
You can’t perform that action at this time.
0 commit comments