File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed
scijava-ops-image/src/main/java
scijava-ops-tutorial/src/main/java Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 2727 * #L%
2828 */
2929
30+ // HACK: Open the scijava-ops-image module completely.
31+ //
32+ // What's supposed to be needed is:
33+ // opens org.scijava.ops.tutorial to org.scijava.ops.engine;
34+ //
35+ // Unfortunately, doing that results in the following error at test time:
36+ //
37+ // Error occurred during initialization of boot layer
38+ // java.lang.module.FindException: Error reading module:
39+ // .../scijava/scijava-ops-image/target/classes
40+ //
41+ // Whereas fully opening the module works for some reason.
3042open module org .scijava .ops .image {
31- // Note that opening this module is necessary to provide runtime access
32- // from the SciJava Ops Engine module.
3343
3444 requires java .scripting ;
3545 requires net .imglib2 .mesh ;
Original file line number Diff line number Diff line change 2727 * #L%
2828 */
2929
30- module org .scijava .ops .tutorial {
31- // -- Open plugins to scijava-ops
30+ module org .scijava .ops .tutorial {
3231 opens org .scijava .ops .tutorial to org .scijava .ops .engine ;
3332
3433 requires io .scif ;
You can’t perform that action at this time.
0 commit comments