721607c246
Найден production-bug на staging: ordinis-app в CrashLoopBackOff с NoClassDefFoundError: com/nimbusds/jose/RemoteKeySourceException. Причина: в Phase 2c e2e тестах я добавил nimbus-jose-jwt 9.37.3 как test-scope direct dependency в ordinis-app/pom.xml. Maven scope resolution: direct test-scope побеждает transitive compile-scope, nimbus исключился из Spring Boot fat jar. На runtime JwtDecoders.fromIssuerLocation() (использует Nimbus internally) падал. Fix: - ordinis-auth/pom.xml: explicit compile-scope dep на nimbus-jose-jwt (раньше тянулся транзитивно через oauth2-resource-server starter) - ordinis-app/pom.xml: убрал test-scope direct decl, JwtTestSupport использует nimbus с compile classpath. Verified: BOOT-INF/lib/nimbus-jose-jwt-9.37.3.jar в fat jar после rebuild. e2e AuthE2ETest всё ещё зелёный (12/12).