From 30c3c946420a65fa4578f649761987c29ad7b116 Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Sat, 26 Mar 2022 12:43:16 +0100 Subject: [PATCH] Don't fail on errors for Javadoc --- .github/CONTRIBUTING.md | 2 +- build.gradle | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 048ef249f..e137574db 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -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. -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 relevant artifacts. diff --git a/build.gradle b/build.gradle index 03c9f0759..07c76a5f4 100755 --- a/build.gradle +++ b/build.gradle @@ -172,3 +172,7 @@ publishing { } } } + +javadoc { + failOnError = false +}