-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move to Java 17 and higher #173
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #173 +/- ##
============================================
- Coverage 84.33% 84.31% -0.02%
Complexity 1390 1390
============================================
Files 79 79
Lines 4456 4457 +1
Branches 523 523
============================================
Hits 3758 3758
- Misses 564 565 +1
Partials 134 134 ☔ View full report in Codecov by Sentry. |
@@ -54,6 +54,7 @@ class Doclet { | |||
FrankElementFilters.getExcludeFilter(), FrankElementFilters.getExcludeFiltersForSuperclass()); | |||
|
|||
model = FrankDocModel.populate(options.getDigesterRulesUrl(), options.getRootClass(), repository); | |||
log.info("Found classes: {}", repository.size()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
log.info("Found classes: {}", repository.size()); | |
log.info("Found classes: {}", repository::size); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I do that, I get the warning: 'org.apache.logging.log4j.util.Supplier' is deprecated
, so I'll leave it for now.
Refactored mechanism how the EasyDoclet in the unittests was used. Now it uses less internals of the JVM, but uses the
Start
class of the Javadoc tools. The same tools are used by the Javadoc binary itself, so it is more future proof.Secondly, bumped a lot of plugins used and deps were available.