Commit 3da0dfe
Fix unparseable pom.xml: -- is not allowed inside an XML comment
The previous commit put "-- which is how" inside a <!-- --> block, which XML
forbids, so pom.xml stopped parsing and all three CI jobs failed, Linux
included.
It was pushed because the local check could not see it. The verification was
mvn -q clean test 2>&1 | grep -E "^Tests run:|BUILD FAIL" | tail -1
and the actual error is "Non-parseable POM", which matches neither pattern. The
grep printed nothing, and nothing read as success. A filter that silently passes
on an unmatched failure is not a check. Verified here on the exit code instead,
with the POMs and the workflow YAML parsed explicitly.
mvn clean package -DskipTests: exit 0.
mvn clean test: 144 tests, the same 3 known analyzespTest failures.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_012qPRpoD8exYRrUmbfXXWXj1 parent c34872e commit 3da0dfe
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
227 | 227 | | |
228 | 228 | | |
229 | 229 | | |
230 | | - | |
| 230 | + | |
231 | 231 | | |
232 | 232 | | |
233 | 233 | | |
| |||
0 commit comments