1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | < dependencies > < dependency > < groupId >org.projectlombok</ groupId > < artifactId >lombok</ artifactId > < version >1.18.0</ version > </ dependency > <!-- needs to be defined here for the annotation processor --> < dependency > < groupId >org.apache.openjpa</ groupId > < artifactId >openjpa</ artifactId > < version >3.0.0</ version > < optional >true</ optional > </ dependency > </ dependencies > < build > < pluginManagement > < plugins > < plugin > < groupId >org.apache.maven.plugins</ groupId > < artifactId >maven-compiler-plugin</ artifactId > < version >3.8.0</ version > < configuration > < source >${maven.compiler.source}</ source > < target >${maven.compiler.target}</ target > < annotationProcessors > < annotationProcessor >lombok.launch.AnnotationProcessorHider$AnnotationProcessor</ annotationProcessor > < annotationProcessor >org.apache.openjpa.persistence.meta.AnnotationProcessor6</ annotationProcessor > </ annotationProcessors > < compilerArgs > < arg >-Aopenjpa.metamodel=true</ arg > < arg >-Aopenjpa.source=7</ arg > </ compilerArgs > </ configuration > </ plugin > </ plugins > </ pluginManagement > </ build > |
Tuesday, February 5, 2019
Maven: use lombok combined with OpenJPA metadata generation
Here is a example how to use lombok combined with OpenJPA metadata generation inside the maven-compiler-plugin:
Subscribe to:
Posts (Atom)