Skip to content

Commit 83a4f65

Browse files
committed
Update POm.xml
1 parent f835aee commit 83a4f65

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

hexfeed-backend/pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
</scm>
2929
<properties>
3030
<java.version>17</java.version>
31-
<lombok.version>1.18.30</lombok.version>
31+
<maven.compiler.source>17</maven.compiler.source>
32+
<maven.compiler.target>17</maven.compiler.target>
3233
</properties>
3334
<dependencies>
3435
<dependency>
@@ -124,7 +125,8 @@
124125
<dependency>
125126
<groupId>org.projectlombok</groupId>
126127
<artifactId>lombok</artifactId>
127-
<optional>true</optional>
128+
<version>1.18.34</version>
129+
<scope>provided</scope>
128130
</dependency>
129131
<dependency>
130132
<groupId>org.springframework.boot</groupId>
@@ -149,13 +151,14 @@
149151
<groupId>org.apache.maven.plugins</groupId>
150152
<artifactId>maven-compiler-plugin</artifactId>
151153
<configuration>
152-
<source>${java.version}</source>
153-
<target>${java.version}</target>
154+
<source>17</source>
155+
<target>17</target>
156+
<parameters>true</parameters>
154157
<annotationProcessorPaths>
155158
<path>
156159
<groupId>org.projectlombok</groupId>
157160
<artifactId>lombok</artifactId>
158-
<version>${lombok.version}</version>
161+
<version>1.18.34</version>
159162
</path>
160163
</annotationProcessorPaths>
161164
</configuration>

0 commit comments

Comments
 (0)