|
|
@@ -5,14 +5,61 @@
|
|
|
<artifactId>d20-charsheet</artifactId>
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
<build>
|
|
|
- <sourceDirectory>src/main/lombok</sourceDirectory>
|
|
|
+ <pluginManagement>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.eclipse.m2e</groupId>
|
|
|
+ <artifactId>lifecycle-mapping</artifactId>
|
|
|
+ <version>1.0.0</version>
|
|
|
+ <configuration>
|
|
|
+ <lifecycleMappingMetadata>
|
|
|
+ <pluginExecutions>
|
|
|
+ <pluginExecution>
|
|
|
+ <pluginExecutionFilter>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok-maven-plugin</artifactId>
|
|
|
+ <versionRange>[1,)</versionRange>
|
|
|
+ <goals>
|
|
|
+ <goal>delombok</goal>
|
|
|
+ </goals>
|
|
|
+ </pluginExecutionFilter>
|
|
|
+ <action>
|
|
|
+ <ignore />
|
|
|
+ </action>
|
|
|
+ </pluginExecution>
|
|
|
+ </pluginExecutions>
|
|
|
+ </lifecycleMappingMetadata>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </pluginManagement>
|
|
|
<plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok-maven-plugin</artifactId>
|
|
|
+ <version>1.16.18.0</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>generate-sources</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>delombok</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <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>
|
|
|
@@ -22,6 +69,7 @@
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
<version>1.16.8</version>
|
|
|
+ <scope>provided</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|