From 64dcde0c4eedd09e65ec20ed0ec4d5185246df4d Mon Sep 17 00:00:00 2001 From: samypr100 <3933065+samypr100@users.noreply.github.com> Date: Fri, 8 Sep 2023 21:37:07 -0400 Subject: [PATCH] docs: move before/after to before note on extra-java-module-info plugin --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a1e098f..03a8c06 100644 --- a/README.md +++ b/README.md @@ -262,11 +262,6 @@ explicitly add the [org.javamodularity.moduleplugin](https://plugins.gradle.org/ back to your build and set `java.modularity.inferModulePath.set(false)` to keep things working as they were. This change should not be required for non-modular projects. -**Note**: There are other recommended alternatives over `org.javamodularity.moduleplugin` for modular projects such as -[extra-java-module-info](https://github.com/gradlex-org/extra-java-module-info) that would allow you to keep -`inferModulePath` set to **true** by declaring missing module information from legacy jars. More details on how to -accomplish can be found on the plugin's source code repository. - **Before** ````groovy @@ -287,3 +282,8 @@ java { modularity.inferModulePath.set(false) } ```` + +**Note**: There are other recommended alternatives over `org.javamodularity.moduleplugin` for modular projects such as +[extra-java-module-info](https://github.com/gradlex-org/extra-java-module-info) that would allow you to keep +`inferModulePath` set to **true** by declaring missing module information from legacy jars. More details on how to +accomplish can be found on the plugin's source code repository.