From 976953a1a6e41db0a69c4480746570a7f7d94200 Mon Sep 17 00:00:00 2001 From: jez04 <david.jezek@post.cz> Date: Wed, 14 Feb 2024 17:43:33 +0100 Subject: [PATCH] fix: add lombok to maven compile plugin --- pom.xml | 2 +- src/main/resources/archetype-resources/pom.xml | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 71d7dcd..0c6de79 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>cz.vsb.fei.java2</groupId> <artifactId>javafx-quickstart</artifactId> - <version>1.0.9</version> + <version>1.0.10</version> <packaging>maven-archetype</packaging> <build> diff --git a/src/main/resources/archetype-resources/pom.xml b/src/main/resources/archetype-resources/pom.xml index 2709987..9f1f4cc 100644 --- a/src/main/resources/archetype-resources/pom.xml +++ b/src/main/resources/archetype-resources/pom.xml @@ -66,6 +66,20 @@ <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.12.1</version> + <configuration> + <annotationProcessorPaths> + <path> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>${lombok.version}</version> + </path> + </annotationProcessorPaths> + </configuration> + </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.1</version> -- GitLab