You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Should I use real modules or automatic modules?
150
+
151
+
Only if you use _real_ modules (Jars with `module-info.class`) everywhere you can use all features of the Java Module System
152
+
(see e.g. [#38](https://github.com/gradlex-org/extra-java-module-info/issues/38) for why it may be problematic to depend on an automatic module).
153
+
Still, using automatic modules is more convenient if you need to work with a lot of legacy libraries, because you do not need to define `exports` and `requires` directives.
154
+
Alternatively though, this plugin offers a way to define a _real_ module, without defining all of those directives explicitly:
0 commit comments