Skip to content

Commit e58f596

Browse files
author
Vincent Potucek
committed
Fix JavadocParagraph
1 parent 6be7a12 commit e58f596

File tree

53 files changed

+86
-122
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+86
-122
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*.ipr
88
*.iml
99
.idea
10+
!.idea/icon.png
1011
.DS_Store
1112
/bootstrap
1213
/dependencies.xml

api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
/**
4141
* Specifies the source of the configuration property, which determines when and where the property
4242
* will be read from or set for consumption in the Maven build lifecycle.
43-
*
43+
* <p>
4444
* The source indicates whether the property is:
4545
* - Set by Maven itself at startup (SYSTEM_PROPERTIES)
4646
* - Configured by users through external means like CLI options (USER_PROPERTIES)

api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ public final class Constants {
476476
* build numbers to perform a "snapshot lock down". Value given here must be <code>maxRemoteBuildNumber + 1</code>
477477
* or greater, otherwise build will fail. How the number to be obtained is left to user (ie by inspecting
478478
* snapshot repository metadata or alike).
479-
*
479+
* <p>
480480
* Note: this feature is present in Maven 3.9.7 but with different key: <code>maven.buildNumber</code>. In Maven 4
481481
* as part of cleanup effort this key was renamed to properly reflect its purpose.
482482
*

api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* Interface that defines some kind of enums that can be extended by Maven plugins or extensions.
26-
*
26+
* <p>
2727
* Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface
2828
* can be used as keys.
2929
*

api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public enum JavaPathType implements PathType {
108108
/**
109109
* The path identified by the Java {@code --patch-module} option.
110110
* The Java tools location is {@link StandardLocation#PATCH_MODULE_PATH}.
111-
*
111+
* <p>
112112
* Note that this option is incomplete, because it must be followed by a module name.
113113
* Use this type only when the module to patch is unknown.
114114
*

api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ default Stream<Phase> allPhases() {
101101

102102
/**
103103
* A phase in the lifecycle.
104-
*
104+
* <p>
105105
* A phase is identified by its name. It also contains a list of plugins bound to that phase,
106106
* a list of {@link Link links}, and a list of sub-phases. This forms a tree of phases.
107107
*/

api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public interface Session extends ProtoSession {
133133
/**
134134
* Returns the plugin context for mojo being executed and the specified
135135
* {@link Project}, never returns {@code null} as if context not present, creates it.
136-
*
136+
* <p>
137137
* <strong>Implementation note:</strong> while this method return type is {@link Map}, the
138138
* returned map instance implements {@link java.util.concurrent.ConcurrentMap} as well.
139139
*

api/maven-api-core/src/main/java/org/apache/maven/api/VersionConstraint.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* Version constraint for dependency.
2727
* Constraint is either a range ("[1,2)") or recommended version ("1.0").
28-
*
28+
* <p>
2929
* {@code VersionConstraint} objects are created using the
3030
* {@linkplain org.apache.maven.api.services.VersionParser} service.
3131
*

api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
/**
2626
* A range of versions.
27-
*
27+
* <p>
2828
* {@code VersionConstraint} objects are created using the
2929
* {@linkplain org.apache.maven.api.services.VersionParser} service.
3030
*

api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Represents the contract for Mojos to interact with the Maven infrastructure.
2727
* Implementations of this interface define specific build-process behaviors
2828
* that are triggered during a Maven build lifecycle.
29-
*
29+
* <p>
3030
* The primary entry point is the {@link #execute()} method, which encapsulates
3131
* the behavior of the Mojo and serves as the integration point with Maven. This
3232
* method may throw an {@link Exception} to signal any issues that prevent

0 commit comments

Comments
 (0)