Skip to content

Commit

Permalink
GH-127 - Switch to open module declarations.
Browse files Browse the repository at this point in the history
  • Loading branch information
odrotbohm committed Sep 26, 2024
1 parent 8feeb00 commit da4493d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module org.jmolecules.architecture.cqrs {
open module org.jmolecules.architecture.cqrs {

exports org.jmolecules.architecture.cqrs;
exports org.jmolecules.architecture.cqrs.annotation;

opens org.jmolecules.architecture.cqrs;
opens org.jmolecules.architecture.cqrs.annotation;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module org.jmolecules.architecture.hexagonal {
open module org.jmolecules.architecture.hexagonal {

exports org.jmolecules.architecture.hexagonal;

opens org.jmolecules.architecture.hexagonal;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module org.jmolecules.architecture.layered {
open module org.jmolecules.architecture.layered {

exports org.jmolecules.architecture.layered;

opens org.jmolecules.architecture.layered;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module org.jmolecules.architecture.onion {
open module org.jmolecules.architecture.onion {

exports org.jmolecules.architecture.onion.classical;
exports org.jmolecules.architecture.onion.simplified;

opens org.jmolecules.architecture.onion.classical;
opens org.jmolecules.architecture.onion.simplified;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module org.jmolecules.ddd {
open module org.jmolecules.ddd {

exports org.jmolecules.ddd.annotation;
exports org.jmolecules.ddd.types;

opens org.jmolecules.ddd.annotation;
opens org.jmolecules.ddd.types;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module org.jmolecules.event {
open module org.jmolecules.event {

exports org.jmolecules.event.annotation;
exports org.jmolecules.event.types;

opens org.jmolecules.event.annotation;
opens org.jmolecules.event.types;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
module org.kmolecules.ddd {
open module org.kmolecules.ddd {

exports org.jmolecules.ddd.annotation;
exports org.jmolecules.ddd.types;

opens org.jmolecules.ddd.annotation;
opens org.jmolecules.ddd.types;
}

0 comments on commit da4493d

Please sign in to comment.