Don't fail on errors for Javadoc

This commit is contained in:
raoulvdberge
2022-03-26 12:43:16 +01:00
parent 6c4c38a579
commit 30c3c94642
2 changed files with 5 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ The build pipeline triggers when a commit is pushed to a branch or pull request.
The release pipeline triggers when a tag is pushed. This will run all the steps that our build pipeline does. The release pipeline triggers when a tag is pushed. This will run all the steps that our build pipeline does.
After that succeeds, it will publish to GitHub packages. After that succeeds, it will publish to GitHub packages and CreeperHost Maven repository.
The "Unreleased" section in `CHANGELOG.md` is parsed and a GitHub release is created with the changelog body and The "Unreleased" section in `CHANGELOG.md` is parsed and a GitHub release is created with the changelog body and
relevant artifacts. relevant artifacts.

View File

@@ -172,3 +172,7 @@ publishing {
} }
} }
} }
javadoc {
failOnError = false
}