When we run the delombok stage as part of our maven build (just before we run tycho), we see quite a few of the following errors:
J:\build\com.project.auth\src\com\project\auth\data\User.java:8: error: package com.project.serialization does not exist
import com.project.serialization.ByteArray;
^
J:\build\com.project.auth\src\com\project\auth\data\User.java:29: error: cannot find symbol
private ByteArray hashedPassword;
^
symbol: class ByteArray
location: class User
It seems this only happens with classes which are not part of the bundle being built. The delombok seems to work fine and tycho has no problem building the resulting code.
Any ideas of how we might address these messages?
Thanks
Chris