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>
97 lines
7.2 KiB
Plaintext
97 lines
7.2 KiB
Plaintext
revision=a24ece9cf797f7ea647e33bf846b115208ed1ba5
|
|
command=./gradlew :adapter:outbound:persistence-jpa:test --tests '*ExperimentalFeatureGateTest.analysisProbe*' --console=plain --rerun-tasks
|
|
> Task :build-logic:extractPluginRequests
|
|
> Task :build-logic:generatePluginAdapters
|
|
> Task :build-logic:compileJava
|
|
> Task :build-logic:compileGroovy
|
|
> Task :build-logic:compileGroovyPlugins
|
|
> Task :build-logic:pluginDescriptors
|
|
> Task :build-logic:processResources
|
|
> Task :build-logic:classes
|
|
> Task :build-logic:jar
|
|
> Task :shared-contract:compileJava
|
|
> Task :shared-contract:processResources
|
|
> Task :shared-contract:classes
|
|
> Task :shared-contract:jar
|
|
> Task :application-core:compileJava
|
|
> Task :application-core:processResources NO-SOURCE
|
|
> Task :application-core:classes
|
|
> Task :application-core:jar
|
|
> Task :adapter:outbound:persistence-jpa:compileJava
|
|
> Task :adapter:outbound:persistence-jpa:processResources
|
|
> Task :adapter:outbound:persistence-jpa:classes
|
|
> Task :adapter:outbound:persistence-jpa:compileTestkitJava
|
|
> Task :adapter:outbound:persistence-jpa:processTestkitResources NO-SOURCE
|
|
> Task :adapter:outbound:persistence-jpa:testkitClasses
|
|
|
|
> Task :adapter:outbound:persistence-jpa:compileTestJava FAILED
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:176: warning: [MissingOverride] getConnection implements method in DataSource; expected @Override
|
|
public java.sql.Connection getConnection() { throw new UnsupportedOperationException(); }
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public java.sql.Connection getConnection() { throw new UnsupportedOperationException(); }'?
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:177: warning: [MissingOverride] getConnection implements method in DataSource; expected @Override
|
|
public java.sql.Connection getConnection(String u, String p) { throw new UnsupportedOperationException(); }
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public java.sql.Connection getConnection(String u, String p) { throw new UnsupportedOperationExcepti'?
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:178: warning: [MissingOverride] getLogWriter implements method in DataSource; expected @Override
|
|
public java.io.PrintWriter getLogWriter() { return null; }
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public java.io.PrintWriter getLogWriter() { return null; }'?
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:179: warning: [MissingOverride] setLogWriter implements method in DataSource; expected @Override
|
|
public void setLogWriter(java.io.PrintWriter out) {}
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public void setLogWriter(java.io.PrintWriter out) {}'?
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:180: warning: [MissingOverride] setLoginTimeout implements method in DataSource; expected @Override
|
|
public void setLoginTimeout(int seconds) {}
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public void setLoginTimeout(int seconds) {}'?
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:181: warning: [MissingOverride] getLoginTimeout implements method in DataSource; expected @Override
|
|
public int getLoginTimeout() { return 0; }
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public int getLoginTimeout() { return 0; }'?
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:182: warning: [MissingOverride] getParentLogger implements method in CommonDataSource; expected @Override
|
|
public java.util.logging.Logger getParentLogger() { return java.util.logging.Logger.getGlobal(); }
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public java.util.logging.Logger getParentLogger() { return java.util.logging.Logger.getGlobal(); }'?
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:183: warning: [MissingOverride] unwrap implements method in Wrapper; expected @Override
|
|
public <T> T unwrap(Class<T> iface) { throw new UnsupportedOperationException(); }
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public <T> T unwrap(Class<T> iface) { throw new UnsupportedOperationException(); }'?
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:184: warning: [MissingOverride] isWrapperFor implements method in Wrapper; expected @Override
|
|
public boolean isWrapperFor(Class<?> iface) { return false; }
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public boolean isWrapperFor(Class<?> iface) { return false; }'?
|
|
error: warnings found and -Werror specified
|
|
1 error
|
|
9 warnings
|
|
|
|
[Incubating] Problems report is available at: file:///shared/codebase/clean-architecture-backend-template/src/build/reports/problems/problems-report.html
|
|
|
|
FAILURE: Build failed with an exception.
|
|
|
|
* What went wrong:
|
|
Execution failed for task ':adapter:outbound:persistence-jpa:compileTestJava'.
|
|
> Compilation failed; see the compiler output below.
|
|
/shared/codebase/clean-architecture-backend-template/src/adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/experimental/ExperimentalFeatureGateTest.java:176: warning: [MissingOverride] getConnection implements method in DataSource; expected @Override
|
|
public java.sql.Connection getConnection() { throw new UnsupportedOperationException(); }
|
|
^
|
|
(see https://errorprone.info/bugpattern/MissingOverride)
|
|
Did you mean '@Override public java.sql.Connection getConnection() { throw new UnsupportedOperationException(); }'?
|
|
1 error
|
|
9 warnings
|
|
|
|
* Try:
|
|
> Run with --scan to generate a Build Scan (Powered by Develocity).
|
|
|
|
BUILD FAILED in 21s
|
|
17 actionable tasks: 17 executed
|