An Alternative for Instant would be to use ZonedDateTime which is also present in the java.time package and can easily converted to an Instant.
import java.time.*;
Instant OneYearFromNow = ZonedDateTime.now().plusYears(1).toInstant();
which is same response i gave for similar issue https://stackoverflow.com/a/79686982/7000165