Skip to content

Commit 659abfd

Browse files
authored
1 parent 5b111a8 commit 659abfd

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

AGENTS.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# AGENTS.md
2+
3+
## Prerequisites
4+
5+
Install the following before running any project task:
6+
7+
- Java 11 or higher
8+
- Apache Maven 3.6+
9+
- (If installing from GitHub Packages) a GitHub personal access token with `read:packages` scope configured in `~/.m2/settings.xml`
10+
11+
## Build
12+
13+
Required installs: see [Prerequisites](#prerequisites).
14+
15+
Build command:
16+
17+
```bash
18+
mvn -B package --file pom.xml
19+
```
20+
21+
## Test
22+
23+
Required installs: see [Prerequisites](#prerequisites).
24+
25+
Test command:
26+
27+
```bash
28+
mvn test
29+
```
30+
31+
## Lint
32+
33+
Required installs: see [Prerequisites](#prerequisites).
34+
35+
Lint/format check command:
36+
37+
```bash
38+
mvn spotless:check
39+
```

0 commit comments

Comments
 (0)