You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This imperative recipe will add the jdeprsacn plugin to a maven project. In the case of a multi-module project,
33
+
* This imperative recipe will add the jdeprscan plugin to a maven project. In the case of a multi-module project,
33
34
* this recipe will attempt to add the plugin to only the top level project.
34
35
*/
35
36
@Incubating(since = "0.2.0")
37
+
@RequiredArgsConstructor
38
+
@Getter
36
39
publicclassAddJDeprScanPluginextendsRecipe {
37
40
41
+
@Option(displayName = "release", description = "Specifies the Java SE release that provides the set of deprecated APIs for scanning.", required = false, example = "11")
42
+
privatefinalStringrelease;
43
+
38
44
@Override
39
45
publicStringgetDisplayName() {
40
46
return"Add JDeprScan Maven Plug-in";
@@ -53,25 +59,24 @@ public Duration getEstimatedEffortPerOccurrence() {
0 commit comments