Skip to content
Snippets Groups Projects
Commit 976953a1 authored by jez04's avatar jez04
Browse files

fix: add lombok to maven compile plugin

parent edd995e7
No related merge requests found
Pipeline #1033 failed with stages
in 0 seconds
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>cz.vsb.fei.java2</groupId> <groupId>cz.vsb.fei.java2</groupId>
<artifactId>javafx-quickstart</artifactId> <artifactId>javafx-quickstart</artifactId>
<version>1.0.9</version> <version>1.0.10</version>
<packaging>maven-archetype</packaging> <packaging>maven-archetype</packaging>
<build> <build>
......
...@@ -66,6 +66,20 @@ ...@@ -66,6 +66,20 @@
<build> <build>
<plugins> <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> <plugin>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>3.2.1</version> <version>3.2.1</version>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment