The keycloak project ended with four open questions that design could not
settle. A two-VM lab was built to answer them by measurement, and this is
that material: 26 experiments, 125 raw command outputs, 22 browser captures.
Follows the import procedure in README.md.
source/ the originating repository verbatim — 78 documents, 28 SVGs,
8 manifests, plus .source-revision recording the commit
final/ the SSOT
document.md 729 lines written from the 29 experiment documents, not
concatenated: what was predicted, what was measured, and
where the measurement itself was wrong
evidence/raw 125 outputs, flattened to <experiment>__<file> because
the originals collided (01-baseline.txt appeared three
times) and the audit only globs the top level
evidence/meta one per raw file; command and exitCode are null and the
README says why rather than inventing them
evidence/browser 22 captures
assets/ three diagrams through techviz
.techviz/ their VizSpecs
A separate project rather than an addition to keycloak: the B-layer answers
that project's four questions, but the A, C and D layers are about cluster
failure, SSO and operations, and one document.md should hold one subject.
The four question records there can point here through 관계.
Recorded rather than papered over: only three of the 28 diagrams were
remade. The repository forbids hand-drawn SVG and forbids titles inside the
canvas; all 28 originals carry both, so converting them is redrawing, not
reformatting. They stay in source/ and the gap is written into the document.
verify-pipeline.py passes. audit-records.py reports no issues.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
adapter-outbound-messaging 모듈 완료 검증
|
|
revision=a24ece9cf797f7ea647e33bf846b115208ed1ba5
|
|
generatedAt=2026-08-30T06:31:34+00:00
|
|
|
|
=== 1. :test ===
|
|
$ ./gradlew :adapter:outbound:messaging:test → BUILD SUCCESSFUL (EXIT=0)
|
|
classes=17 tests=92 failures=0 errors=0 skipped=0
|
|
|
|
=== 2. :check 는 verifyJsonSchemaRuntimeGraph 에서 실패한다 (sub-scope 01 §3) ===
|
|
$ ./gradlew :adapter:outbound:messaging:verifyJsonSchemaRuntimeGraph → FAILED, EXIT=1
|
|
> Messaging JSON runtime is missing required locked module tools.jackson.core:jackson-core:3.0.2
|
|
요구 좌표는 3.0.2, 잠긴 좌표는 3.1.5 — 버전 드리프트로 게이트가 통과 불가.
|
|
|
|
=== 3. qualification lane 두 종은 루트 태스크에 의존한다 ===
|
|
$ grep -n 'prepareMessagingContractEvidence' src/adapter/outbound/messaging/build.gradle
|
|
85: dependsOn ':prepareMessagingContractEvidence'
|
|
103: dependsOn ':prepareMessagingContractEvidence'
|
|
exit=0
|
|
|
|
$ grep -rn 'prepareMessagingContractEvidence' src/build.gradle | head -3
|
|
656:def prepareMessagingContractEvidence = tasks.register('prepareMessagingContractEvidence') {
|
|
exit=0
|
|
|
|
(두 lane 은 ':prepareMessagingContractEvidence' 를 요구하며 루트 수준 증거 산출 파이프라인의 일부다 — 이 분석에서 실행하지 않았다.)
|
|
|
|
=== 4. 작업 트리 ===
|
|
$ git status --short | wc -l
|
|
0
|
|
exit=0
|
|
|