From 11de295993d526311d8b16dcfffd35fb1cff6c2c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 22 Jul 2026 20:08:17 +0000 Subject: [PATCH 1/2] docs: add AGENTS guide for build test lint --- AGENTS.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..977d933a --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,48 @@ +# AGENTS.md + +## Prerequisites + +Install the following before running any project task: + +- Java 11 or higher +- Apache Maven 3.6+ +- (If installing from GitHub Packages) a GitHub personal access token with `read:packages` scope configured in `~/.m2/settings.xml` + +## Build + +Required installs: + +- Java 11 or higher +- Apache Maven 3.6+ + +Build command: + +```bash +mvn -B package --file pom.xml +``` + +## Test + +Required installs: + +- Java 11 or higher +- Apache Maven 3.6+ + +Test command: + +```bash +mvn test +``` + +## Lint + +Required installs: + +- Java 11 or higher +- Apache Maven 3.6+ + +Lint/format check command: + +```bash +mvn spotless:check +``` From 7e7ccee384815965fcb5cc798de82fcd6698479e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 22 Jul 2026 20:08:44 +0000 Subject: [PATCH 2/2] docs: reduce duplication in AGENTS prerequisites --- AGENTS.md | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 977d933a..81552d30 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -10,10 +10,7 @@ Install the following before running any project task: ## Build -Required installs: - -- Java 11 or higher -- Apache Maven 3.6+ +Required installs: see [Prerequisites](#prerequisites). Build command: @@ -23,10 +20,7 @@ mvn -B package --file pom.xml ## Test -Required installs: - -- Java 11 or higher -- Apache Maven 3.6+ +Required installs: see [Prerequisites](#prerequisites). Test command: @@ -36,10 +30,7 @@ mvn test ## Lint -Required installs: - -- Java 11 or higher -- Apache Maven 3.6+ +Required installs: see [Prerequisites](#prerequisites). Lint/format check command: