All checks were successful
Java Maven 3.9.9 & JDK 26 CI/CD Pipeline / build-and-deploy (push) Successful in 9m30s
732 B
732 B
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.
# 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 sourcesrc/main/resources/— resources bundled with the appsrc/test/java/— test source
Group ID: com.l | Artifact ID: trace | Version: 1.0-SNAPSHOT