diff --git a/processor/pom.xml b/processor/pom.xml index aa17442db..751c8d3aa 100644 --- a/processor/pom.xml +++ b/processor/pom.xml @@ -45,19 +45,20 @@ + these dependencies are not required at runtime, only for prism generation + and tests --> com.jolira hickory provided - - ${project.groupId} mapstruct provided + + org.testng testng diff --git a/processor/src/main/java/org/mapstruct/ap/model/Mapper.java b/processor/src/main/java/org/mapstruct/ap/model/Mapper.java index 7a06289e9..33681f855 100644 --- a/processor/src/main/java/org/mapstruct/ap/model/Mapper.java +++ b/processor/src/main/java/org/mapstruct/ap/model/Mapper.java @@ -23,6 +23,7 @@ import java.util.Collection; import java.util.List; import java.util.SortedSet; import java.util.TreeSet; + import javax.annotation.Generated; import javax.lang.model.element.ElementKind; import javax.lang.model.element.TypeElement; @@ -31,7 +32,7 @@ import javax.lang.model.util.Elements; import org.mapstruct.ap.util.TypeFactory; /** - * Represents a type implementing a mapper interface (annotated with {@code @Mapper}. This is the root object of the + * Represents a type implementing a mapper interface (annotated with {@code @Mapper}). This is the root object of the * mapper model. * * @author Gunnar Morling