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
Copy file name to clipboardExpand all lines: README.md
+24-8Lines changed: 24 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,10 +10,27 @@ A Gradle 6.4+ plugin to use legacy Java libraries as _Java Modules_ in a modular
10
10
This plugin allows you to add module information to a Java library that does not have any.
11
11
If you do that, you can give it a proper _module name_ and Gradle can pick it up to put it on the _module path_ during compilation, testing and execution.
12
12
13
+
The plugin should be applied to **all subprojects** of your multi-project build.
14
+
It is recommended to use a [convention plugin](https://docs.gradle.org/current/samples/sample_convention_plugins.html#organizing_build_logic) for that.
15
+
16
+
## Plugin dependency
17
+
18
+
Add this to the build file of your convention plugin's build
19
+
(e.g. `build-logic/build.gradle(.kts)` or `buildSrc/build.gradle(.kts)`).
0 commit comments