Skip to content

Commit

Permalink
export more for deriving nodes.
Browse files Browse the repository at this point in the history
  • Loading branch information
i-make-robots committed Jan 26, 2025
1 parent 785f319 commit 6813726
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
exports com.marginallyclever.donatello.graphview;

// must export these packages for nodegraphcore to access the classes within.
exports com.marginallyclever.donatello.nodes to com.marginallyclever.nodegraphcore;
exports com.marginallyclever.donatello.nodes.color to com.marginallyclever.nodegraphcore;
exports com.marginallyclever.donatello.nodes.images to com.marginallyclever.nodegraphcore;
exports com.marginallyclever.donatello.nodes.images.blend to com.marginallyclever.nodegraphcore;
exports com.marginallyclever.donatello.search to ch.qos.logback.core;
exports com.marginallyclever.donatello.bezier to ch.qos.logback.core;
exports com.marginallyclever.donatello.nodes;
exports com.marginallyclever.donatello.nodes.color;
exports com.marginallyclever.donatello.nodes.images;
exports com.marginallyclever.donatello.nodes.images.blend;
exports com.marginallyclever.donatello.search;
exports com.marginallyclever.donatello.bezier;

// A Java module that wants to implement a service interface from a service interface module must:
// - Require the service interface module in its own module descriptor.
Expand Down

0 comments on commit 6813726

Please sign in to comment.