Files
java-tutorials/core-java-9/src/simple-modules/hello.modules/module-info.java
T
christopherfranklin ee036aacca [BAEL-1615] Code to support article. (#3867)
* [BAEL-1615] Code to support article.

* Adding example of provides...with

* Adding uses to main module
2018-04-11 20:27:31 +02:00

4 lines
165 B
Java

module hello.modules {
exports com.baeldung.modules.hello;
provides com.baeldung.modules.hello.HelloInterface with com.baeldung.modules.hello.HelloModules;
}