File tree 1 file changed +8
-13
lines changed
1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,14 @@ and avoiding crates which do not fully comply to the specification, at the same
18
18
19
19
## Build the library / documentation
20
20
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 `
23
29
24
30
On Windows, replace ` ./gradlew ` with ` gradlew.bat ` .
25
31
@@ -684,14 +690,3 @@ If there is no special method for including relative entities (ID properties) on
684
690
)
685
691
.build();
686
692
```
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 ` .
You can’t perform that action at this time.
0 commit comments