Some checks failed
Java Maven 3.9.9 & JDK 26 CI/CD Pipeline / build-and-deploy (push) Failing after 9m3s
40 lines
734 B
Markdown
40 lines
734 B
Markdown
# CLAUDE.md
|
|
|
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
|
|
## Build System
|
|
|
|
This is a Maven project targeting Java 26.
|
|
|
|
```bash
|
|
# Build the project (compile + test)
|
|
mvn verify
|
|
|
|
# Compile only
|
|
mvn compile
|
|
|
|
# Run all tests
|
|
mvn test
|
|
|
|
# Run a single test class
|
|
mvn test -Dtest=MyTestClass
|
|
|
|
# Run a single test method
|
|
mvn test -Dtest=MyTestClass#myTestMethod
|
|
|
|
# Package into a JAR
|
|
mvn package
|
|
|
|
# Clean build artifacts
|
|
mvn clean
|
|
```
|
|
|
|
## Project Layout
|
|
|
|
Standard Maven layout:
|
|
- `src/main/java/` — application source
|
|
- `src/main/resources/` — resources bundled with the app
|
|
- `src/test/java/` — test source
|
|
|
|
Group ID: `com.l` | Artifact ID: `tracecd` | Version: `1.0-SNAPSHOT`
|