Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# 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: see [Prerequisites](#prerequisites).

Build command:

```bash
mvn -B package --file pom.xml
```

## Test

Required installs: see [Prerequisites](#prerequisites).

Test command:

```bash
mvn test
```

## Lint

Required installs: see [Prerequisites](#prerequisites).

Lint/format check command:

```bash
mvn spotless:check
```
Loading