Hello everyone, I am having a problem implementing JWT I have this in the dependency section in my build.gradle.kts file implementation("io.jsonwebtokenjjwt api0.11.5")
runtimeOnly("io.jsonwebtokenjjwt impl0.11.5")
runtimeOnly("io.jsonwebtokenjjwt jackson0.11.5")
and in my JwtService file I have this import
import io.jsonwebtoken.Claims;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.security.Keys;
with this error: The import io.jsonwebtoken cannot be resolved
any ideas on how to fix this/ import jwt correctly? Thanks in advance!