Skip to content

Commit 7b0d5af

Browse files
committed
readme: restructure commands section
1 parent 6544366 commit 7b0d5af

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

README.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,14 @@ and avoiding crates which do not fully comply to the specification, at the same
1818

1919
## Build the library / documentation
2020

21-
Build and run tests: `./gradlew build`
22-
Build documentation: `./gradlew javadoc`
21+
- Building (with tests): `./gradlew clean build`
22+
- Building (without tests): `./gradlew clean build -x test`
23+
- Building with release profile: `./gradlew -Dprofile=release clean build`
24+
- Doing a release: `./gradlew -Dprofile=release clean build release`
25+
- Will prompt you about version number to use and next version number
26+
- Will make a git tag which can later be used in a GitHub release
27+
- A GitHub release will trigger the CI for publication. See also `.github/workflows/publishRelease.yml`.
28+
- Build documentation: `./gradlew javadoc`
2329

2430
On Windows, replace `./gradlew` with `gradlew.bat`.
2531

@@ -684,14 +690,3 @@ If there is no special method for including relative entities (ID properties) on
684690
)
685691
.build();
686692
```
687-
688-
689-
## Maintenance tasks
690-
691-
- Building (with tests): `./gradlew clean build`
692-
- Building (without tests): `./gradlew clean build -x test`
693-
- Building with release profile: `./gradlew -Dprofile=release clean build`
694-
- Doing a release: `./gradlew -Dprofile=release clean build release`
695-
- Will prompt you about version number to use and next version number
696-
- Will make a git tag which can later be used in a GitHub release
697-
- A GitHub release will trigger the CI for publication. See also `.github/workflows/publishRelease.yml`.

0 commit comments

Comments
 (0)