From 8493c12099bafa1360079bfe8f15da88dc7bb559 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Mon, 16 Apr 2018 10:08:56 +0200 Subject: [PATCH] DATAJPA-1282 - Migrate to native APT execution. We now use the Compiler plugin to invoke APT-based code generation with Querydsl, JPA Metamodel and Project Lombok. This allows us to remove apt-maven-plugin that interferes with newer Maven Compiler plugin versions. --- pom.xml | 66 +++++++-------------------------------------------------- 1 file changed, 8 insertions(+), 58 deletions(-) diff --git a/pom.xml b/pom.xml index a51483081..ab8fcd303 100644 --- a/pom.xml +++ b/pom.xml @@ -213,11 +213,19 @@ true + + org.hibernate + hibernate-jpamodelgen + ${hibernate} + provided + + com.querydsl querydsl-apt ${querydsl} + jpa provided @@ -266,13 +274,6 @@ test - - com.google.guava - guava - 17.0 - test - - @@ -417,57 +418,6 @@ - - com.mysema.maven - apt-maven-plugin - ${apt} - - true - - com.querydsl.apt.jpa.JPAAnnotationProcessor - org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor - - - - - sources - generate-sources - - process - - - target/generated-sources/annotations - - - - test-sources - generate-test-sources - - test-process - - - target/generated-test-sources/test-annotations - - - org.springframework.data.jpa.repository.util.JpaClassUtilsUnitTests.NamedUser,org.springframework.data.jpa.repository.query.ParameterBinderUnitTests.SampleEmbeddable - - - - - - - - org.hibernate - hibernate-jpamodelgen - 1.3.0.Final - - - com.google.guava - guava - 17.0 - - - org.apache.maven.plugins maven-assembly-plugin