We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
javadoc-view
1 parent 62e1671 commit bc32f8fCopy full SHA for bc32f8f
README.md
@@ -80,6 +80,7 @@
80
## [Unreleased]
81
### Fixed
82
- Fix spotless deprecation warnings.
83
+- Fix assignment deprecation warnings in `javadoc-view`.
84
85
## [9.0.0] - 2025-05-27
86
src/main/resources/helper/javadoc-view.gradle
@@ -6,8 +6,8 @@ import com.diffplug.common.swt.os.OS
6
7
// adds a javadocView task, which shows the javadoc
8
tasks.register('javadocView') {
9
- group JavaBasePlugin.DOCUMENTATION_GROUP;
10
- description 'Views the Javadoc in a browser.'
+ group = JavaBasePlugin.DOCUMENTATION_GROUP;
+ description = 'Views the Javadoc in a browser.'
11
dependsOn tasks.named('javadoc')
12
doLast {
13
project.exec {
0 commit comments