Skip to content

A small application to demonstrate the Java Platform Module System

License

Notifications You must be signed in to change notification settings

nipafx/demo-jpms-monitor

 
 

Repository files navigation

↗️ This README only covers one section of the demo. The master branch contains more information.

Implied Readability

This branch shows how implied readability allows the monitor and monitor.peek modules to use monitor.observer.alpha without requiring monitor.observer even though that module's API is needed as well. The feat is achieved by using requires transitive to establish the dependency from monitor.observer.alpha to monitor.observer.

module monitor.observer.alpha {
		requires transitive monitor.observer;
		exports monitor.observer.alpha;
}

About

A small application to demonstrate the Java Platform Module System

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published