|
|
@@ -33,13 +33,24 @@
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</pluginManagement>
|
|
|
+ <sourceDirectory>target/generated-sources/delombok</sourceDirectory>
|
|
|
<plugins>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>3.5.1</version>
|
|
|
+ <configuration>
|
|
|
+ <compilerVersion>1.8</compilerVersion>
|
|
|
+ <source>1.8</source>
|
|
|
+ <target>1.8</target>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok-maven-plugin</artifactId>
|
|
|
<version>1.16.18.0</version>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
+ <id>delombok</id>
|
|
|
<phase>generate-sources</phase>
|
|
|
<goals>
|
|
|
<goal>delombok</goal>
|
|
|
@@ -47,21 +58,10 @@
|
|
|
</execution>
|
|
|
</executions>
|
|
|
<configuration>
|
|
|
+ <addOutputDirectory>false</addOutputDirectory>
|
|
|
<encoding>UTF-8</encoding>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <version>3.5</version>
|
|
|
- <configuration>
|
|
|
- <sourceDirectory>target/generated-sources</sourceDirectory>
|
|
|
- <source>1.8</source>
|
|
|
- <target>1.8</target>
|
|
|
- <annotationProcessors>
|
|
|
- <annotationProcessor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</annotationProcessor>
|
|
|
- </annotationProcessors>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
<dependencies>
|