Skip to content

Commit

Permalink
Update module-info.java
Browse files Browse the repository at this point in the history
  • Loading branch information
cicirello committed Sep 24, 2021
1 parent 54edaf5 commit 29b33bd
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@
exports org.cicirello.permutations.distance;
exports org.cicirello.sequences;
exports org.cicirello.sequences.distance;
requires org.cicirello.rho_mu;
requires org.cicirello.core;

// Specified transitive on these to minimize the impact
// of the introduction of modules on users' existing code
// that might assume access to the classes/interfaces from these
// modules. Strictly speaking, these do not need to be transitive
// for jpt because jpt's public interface does not depend on anything
// in these (e.g., no objects of any classes from these modules are
// returned or expected as parameters).
requires transitive org.cicirello.rho_mu;
requires transitive org.cicirello.core;
}

0 comments on commit 29b33bd

Please sign in to comment.