As a young developer I am facing an new type of issue I've never faced before. According to this article, Java plans to remove serialization and de-serialization due to security problems.
I am currently working on a project that uses serialization and de-serialization a lot. The exact date where it will be dropped by java has not been announced yet (to my knowledge at least). It's not a big project, but not using serialization anymore would change the entire architecture.
So my question is : should I anticipate it or should I wait for further details before changing the way my project work?
Thanks in advance.