- Backfill `created` frontmatter on 266 active notes (git date or mtime) - Normalize `status` to 4 values: draft/active/done/archived (11 notes) - Active/进行中/needs-review → active - archive → archived - 待执行/conditional → draft - 完成/accepted → done - Declare clipper boundary: 04_Archive/Inbox-Clippings/** exempt from migration - Update depth rule: max 3 → max 4 levels (new notes only) - Add metadata-converge.mjs script for reproducibility
19 lines
570 B
Markdown
19 lines
570 B
Markdown
---
|
|
created: 2026-01-05
|
|
---
|
|
Java parameters references:
|
|
[Gradle Java Plugin](https://docs.gradle.org/current/userguide/java_plugin.html)
|
|
|
|
Running only certain test to debug problems:
|
|
```
|
|
gradle test --tests org.gradle.SomeTest.someSpecificFeature
|
|
gradle test --tests *SomeTest.someSpecificFeature
|
|
gradle test --tests *SomeSpecificTest
|
|
gradle test --tests all.in.specific.package*
|
|
gradle test --tests *IntegTest
|
|
gradle test --tests *IntegTest*ui*
|
|
gradle test --tests *IntegTest.singleMethod
|
|
gradle someTestTask --tests *UiTest someOtherTestTask --tests *WebTest*ui
|
|
```
|
|
|