diff --git a/integrationtest/pom.xml b/integrationtest/pom.xml index f19ecfe34..17a6a4a9a 100644 --- a/integrationtest/pom.xml +++ b/integrationtest/pom.xml @@ -65,7 +65,6 @@ commons-io commons-io - 2.6 test diff --git a/integrationtest/src/test/resources/lombokBuilderTest/pom.xml b/integrationtest/src/test/resources/lombokBuilderTest/pom.xml index 92ece809f..5d43efb1d 100644 --- a/integrationtest/src/test/resources/lombokBuilderTest/pom.xml +++ b/integrationtest/src/test/resources/lombokBuilderTest/pom.xml @@ -25,5 +25,11 @@ lombok compile + + org.projectlombok + lombok-mapstruct-binding + 0.2.0 + compile + diff --git a/parent/pom.xml b/parent/pom.xml index 9e5c04f27..b6a619a90 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -25,7 +25,7 @@ 3.0.0-M3 3.0.0-M5 3.1.0 - 4.0.3.RELEASE + 5.3.3 1.6.0 8.36.1 5.7.0 @@ -202,7 +202,7 @@ org.projectlombok lombok - 1.18.10 + 1.18.16 org.immutables @@ -261,7 +261,7 @@ commons-io commons-io - 2.5 + 2.6 @@ -553,7 +553,7 @@ com.github.siom79.japicmp japicmp-maven-plugin - 0.13.1 + 0.15.2 verify diff --git a/processor/src/test/java/org/mapstruct/ap/test/exceptions/ExceptionTestMapper.java b/processor/src/test/java/org/mapstruct/ap/test/exceptions/ExceptionTestMapper.java index c856c0d3b..13d0d1f5c 100644 --- a/processor/src/test/java/org/mapstruct/ap/test/exceptions/ExceptionTestMapper.java +++ b/processor/src/test/java/org/mapstruct/ap/test/exceptions/ExceptionTestMapper.java @@ -20,6 +20,6 @@ public class ExceptionTestMapper { else if ( size == 2 ) { throw new TestException2(); } - return new Long(size); + return Long.valueOf( size ); } }