Skip to content

Commit

Permalink
Merge pull request #2 from ueberfuhr-trainings/feature/lombok
Browse files Browse the repository at this point in the history
Add Lombok
  • Loading branch information
ueberfuhr authored Aug 26, 2024
2 parents acfe895 + d9607c4 commit 8f62f84
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions customer-api-provider/lombok.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lombok.addLombokGeneratedAnnotation=true
26 changes: 25 additions & 1 deletion customer-api-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<quarkus.platform.version>3.13.3</quarkus.platform.version>
<skipITs>true</skipITs>
<surefire-plugin.version>3.2.5</surefire-plugin.version>
<lombok.version>1.18.34</lombok.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -48,9 +49,32 @@
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler-plugin.version}</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>${quarkus.platform.group-id}</groupId>
Expand Down

0 comments on commit 8f62f84

Please sign in to comment.