From d9c5a2c94f6b15048139abfe99efdd9948918c02 Mon Sep 17 00:00:00 2001 From: Dennis Labordus Date: Wed, 14 Jul 2021 11:13:19 +0200 Subject: [PATCH] Added reference to use of MapStruct in IDEs. Signed-off-by: Dennis Labordus --- DEVELOPING.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/DEVELOPING.md b/DEVELOPING.md index e1074e3..cebd88b 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -101,7 +101,11 @@ As a simple yet instructive example, consider ... ``` ## IDEs -If your IDE is supported by sonarlint (both IntelliJ IDEA and the Eclipse IDE are supported), it is recommended to install it. It provides immediate feedback on most sonar issues. Running tests individually is often possible in IDEs without invoking maven. Please consult the documentation of your IDE for setting up the project through maven integration. +If your IDE is supported by sonarlint (both IntelliJ IDEA and the Eclipse IDE are supported), it is recommended to install it. +It provides immediate feedback on most sonar issues. Running tests individually is often possible in IDEs without invoking maven. +Please consult the documentation of your IDE for setting up the project through maven integration. + +For MapStruct there are plugins available for both IDEs mentioned below. See this [page](https://mapstruct.org/documentation/ide-support/). ### Intellij IDEA Import the project using IDEA's maven integration in the GUI. Install SonarLint. Code!