Skip to content

Commit

Permalink
open module for reflection.
Browse files Browse the repository at this point in the history
  • Loading branch information
i-make-robots committed Jan 6, 2024
1 parent 51df542 commit 00fdee6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@
<configuration>
<source>${minimum.java.version}</source>
<destDir>docs</destDir>
<excludePackageNames>com.marginallyclever.robotoverlord.*</excludePackageNames>
</configuration>
</plugin>

Expand Down
8 changes: 1 addition & 7 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module com.marginallyclever.robotoverlord {
open module com.marginallyclever.robotoverlord {
requires transitive java.desktop;
requires transitive java.prefs;
requires transitive java.logging;
Expand Down Expand Up @@ -33,10 +33,4 @@
requires webcam.capture;
requires ch.qos.logback.classic;
requires ch.qos.logback.core;

// AFAIK this is only needed for the test 'GCodePathLoaderTest'.
// I don't know why it throws `InaccessibleObjectException` without this.
opens com.marginallyclever.robotoverlord.systems.render.gcodepath;
opens com.marginallyclever.robotoverlord.components;
opens com.marginallyclever.robotoverlord.components.program;
}

0 comments on commit 00fdee6

Please sign in to comment.