Skip to content

Commit

Permalink
Don't fail on errornous JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
ckittl committed Jan 6, 2022
1 parent b5f8fb0 commit d55f3e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Replace lambdas with method references
- Use `Stream#toList`
- Create JavaDoc with java 17 instead of java 8
- Let JavDoc pass, if there are warnings **ATTENTION:** Should be removed, when JavaDoc is fixed!

### Added
- added `EvcsLocationType` support in `EvcsInput` and `EvcsInputFactory` [#406](https://github.com/ie3-institute/PowerSystemDataModel/issues/406)
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ tasks.withType(JavaCompile) {

tasks.withType(Javadoc){
options.encoding = 'UTF-8'
failOnError = false // TODO: Temp until JavaDoc issues are resolved
}

task printVersion {
Expand Down

0 comments on commit d55f3e7

Please sign in to comment.