Skip to content

Commit

Permalink
Fix description of build-image[-no-fork] Maven plugin goals
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasKasene authored and snicoll committed May 24, 2023
1 parent 72fd94f commit e84025b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
import org.apache.maven.plugins.annotations.ResolutionScope;

/**
* {@link BuildImageMojo implementation} that forks the lifecycle to make sure that
* {@code package} ran. This goal is suitable for command-line invocation. If you need to
* configure a mojo {@code execution} in your build, use {@link BuildImageNoForkMojo}
* instead.
* Package an application into an OCI image using a buildpack, forking the lifecycle to
* make sure that {@code package} ran. This goal is suitable for command-line invocation.
* If you need to configure a goal {@code execution} in your build, use
* {@code build-image-no-fork} instead.
*
* @author Stephane Nicoll
* @since 3.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
import org.apache.maven.plugins.annotations.ResolutionScope;

/**
* {@link BuildImageMojo implementation} that does not fork the lifecycle to make sure
* that {@code package} ran. This goal should be used when configuring a mojo
* {@code execution} in your build. To invoke the goal on the command-line, use
* {@link BuildImageForkMojo} instead.
* Package an application into an OCI image using a buildpack, but without forking the
* lifecycle to make sure that {@code package} ran. This goal should be used when
* configuring a goal {@code execution} in your build. To invoke the goal on the
* command-line, use {@code build-image} instead.
*
* @author Stephane Nicoll
* @since 3.0.0
Expand Down

0 comments on commit e84025b

Please sign in to comment.