trace/CLAUDE.md
Lee c5dee7e444
Some checks failed
Java Maven 3.9.9 & JDK 26 CI/CD Pipeline / build-and-deploy (push) Failing after 9m3s
初始化项目
2026-06-08 15:04:18 +08:00

734 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 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