Guest User

Untitled

a guest
Dec 13th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. println(myPojoInstance.foo)
  2.  
  3. <plugin>
  4. <groupId>org.projectlombok</groupId>
  5. <artifactId>lombok-maven-plugin</artifactId>
  6. <version>${lombok.version}.0</version>
  7. <executions>
  8. <execution>
  9. <id>delombok</id>
  10. <phase>generate-sources</phase>
  11. <goals>
  12. <goal>delombok</goal>
  13. </goals>
  14. <configuration>
  15. <formatPreferences>
  16. <javaLangAsFQN>skip</javaLangAsFQN>
  17. </formatPreferences>
  18. <verbose>true</verbose>
  19. </configuration>
  20. </execution>
  21. <execution>
  22. <id>test-delombok</id>
  23. <phase>generate-test-sources</phase>
  24. <goals>
  25. <goal>testDelombok</goal>
  26. </goals>
  27. <configuration>
  28. <verbose>true</verbose>
  29. </configuration>
  30. </execution>
  31. </executions>
  32. </plugin>
Add Comment
Please, Sign In to add comment