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
Copy file name to clipboardexpand all lines: maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/metadata/AddPluginArtifactMetadataMojo.java
+1
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,7 @@ public class AddPluginArtifactMetadataMojo
Copy file name to clipboardexpand all lines: maven-plugin-plugin/src/main/java/org/apache/maven/plugins/plugin/descriptor/MNG6109PluginDescriptorBuilder.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ public MojoDescriptor buildComponentDescriptor( PlexusConfiguration c, PluginDes
51
51
for ( PlexusConfigurationd : parameterConfigurations )
Copy file name to clipboardexpand all lines: maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java
+6-6
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@
31
31
importjava.util.HashSet;
32
32
importjava.util.List;
33
33
importjava.util.Map;
34
+
importjava.util.Objects;
34
35
importjava.util.Set;
35
36
importjava.util.TreeMap;
36
37
importjava.util.TreeSet;
@@ -97,6 +98,7 @@ public class JavaAnnotationsMojoDescriptorExtractor
Copy file name to clipboardexpand all lines: maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/datamodel/AnnotatedField.java
Copy file name to clipboardexpand all lines: maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/datamodel/ComponentAnnotationContent.java
+3
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ public ComponentAnnotationContent( String fieldName, String role, String hint )
47
47
this.hint = hint;
48
48
}
49
49
50
+
@Override
50
51
publicClass<?> role()
51
52
{
52
53
// not used
@@ -63,6 +64,7 @@ public String getRoleClassName()
Copy file name to clipboardexpand all lines: maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/datamodel/ExecuteAnnotationContent.java
+4
Original file line number
Diff line number
Diff line change
@@ -37,16 +37,19 @@ public class ExecuteAnnotationContent
37
37
38
38
privateLifecyclePhasephase;
39
39
40
+
@Override
40
41
publicLifecyclePhasephase()
41
42
{
42
43
returnthis.phase;
43
44
}
44
45
46
+
@Override
45
47
publicStringgoal()
46
48
{
47
49
returnthis.goal;
48
50
}
49
51
52
+
@Override
50
53
publicStringlifecycle()
51
54
{
52
55
returnthis.lifecycle;
@@ -69,6 +72,7 @@ public void lifecycle( String lifecycle )
Copy file name to clipboardexpand all lines: maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/datamodel/MojoAnnotationContent.java
+15
Original file line number
Diff line number
Diff line change
@@ -62,11 +62,13 @@ public class MojoAnnotationContent
62
62
63
63
privatebooleanthreadSafe = false;
64
64
65
+
@Override
65
66
publicClass<? extendsAnnotation> annotationType()
66
67
{
67
68
returnnull;
68
69
}
69
70
71
+
@Override
70
72
publicLifecyclePhasedefaultPhase()
71
73
{
72
74
returndefaultPhase;
@@ -77,6 +79,7 @@ public void defaultPhase( String phase )
Copy file name to clipboardexpand all lines: maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/datamodel/ParameterAnnotationContent.java
Copy file name to clipboardexpand all lines: maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/scanner/DefaultMojoAnnotationsScanner.java
+2-1
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,7 @@ public class DefaultMojoAnnotationsScanner
0 commit comments