-
Notifications
You must be signed in to change notification settings - Fork 33
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
Implement MkDocs Plugin #78
Conversation
Codecov Report
@@ Coverage Diff @@
## master #78 +/- ##
============================================
- Coverage 35.17% 33.74% -1.44%
- Complexity 181 183 +2
============================================
Files 84 90 +6
Lines 2206 2344 +138
Branches 208 226 +18
============================================
+ Hits 776 791 +15
- Misses 1363 1483 +120
- Partials 67 70 +3
Continue to review full report at Codecov.
|
|
||
public class MkDocsPlugin implements Plugin<Project> { | ||
|
||
@SneakyThrows |
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.
SameNameButDifferent: The name @SneakyThrows
refers to [java.lang.Throwable, lombok.Lombok] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity. (details)
(at-me in a reply with help
or ignore
)
@Override | ||
public void apply(Project project) { | ||
|
||
TaskProvider<MkDocsBuild> docsBuildTaskProvider = project.getTasks().register("mkdocs", MkDocsBuild.class, mkDocs -> { |
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.
UnusedVariable: The local variable 'docsBuildTaskProvider' is never read. (details)
(at-me in a reply with help
or ignore
)
No description provided.