Remove remaining references to Hickory (#2511)

This commit is contained in:
Henning Pöttker 2021-08-14 08:38:36 +02:00 committed by GitHub
parent c1fa9bd0bd
commit 0d8729767b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@
<forkCount>1</forkCount> <forkCount>1</forkCount>
<assertj.version>3.17.2</assertj.version> <assertj.version>3.17.2</assertj.version>
<!-- automatically run annotation processors within the incremental compilation --> <!-- automatically run annotation processors within the incremental compilation -->
<!-- Needed for the hickory processor--> <!-- Needed for the gem tools processor-->
<m2e.apt.activation>jdt_apt</m2e.apt.activation> <m2e.apt.activation>jdt_apt</m2e.apt.activation>
</properties> </properties>

View File

@ -67,9 +67,9 @@ import static javax.lang.model.element.ElementKind.CLASS;
* <li>if no error occurred, write out the model into Java source files</li> * <li>if no error occurred, write out the model into Java source files</li>
* </ul> * </ul>
* <p> * <p>
* For reading annotation attributes, gems as generated with help of the <a * For reading annotation attributes, gems as generated with help of <a
* href="https://java.net/projects/hickory">Hickory</a> tool are used. These gems allow a comfortable access to * href="https://github.com/mapstruct/tools-gem">Gem Tools</a>. These gems allow comfortable access to annotations and
* annotations and their attributes without depending on their class objects. * their attributes without depending on their class objects.
* <p> * <p>
* The creation of Java source files is done using the <a href="http://freemarker.org/"> FreeMarker</a> template engine. * The creation of Java source files is done using the <a href="http://freemarker.org/"> FreeMarker</a> template engine.
* Each node of the mapper model has a corresponding FreeMarker template file which provides the Java representation of * Each node of the mapper model has a corresponding FreeMarker template file which provides the Java representation of

View File

@ -36,7 +36,7 @@ import org.mapstruct.control.MappingControls;
import org.mapstruct.tools.gem.GemDefinition; import org.mapstruct.tools.gem.GemDefinition;
/** /**
* Triggers the generation of ge types using <a href="https://java.net/projects/hickory">Hickory</a>. * Triggers the generation of gem types using <a href="https://github.com/mapstruct/tools-gem">Gem Tools</a>.
* *
* @author Gunnar Morling * @author Gunnar Morling
*/ */