Commit 331ebe90 authored by Stephane Nicoll's avatar Stephane Nicoll

Restore @since on build-image parameters

parent 63019ab3
...@@ -63,30 +63,35 @@ public class BuildImageMojo extends AbstractPackagerMojo { ...@@ -63,30 +63,35 @@ public class BuildImageMojo extends AbstractPackagerMojo {
/** /**
* Directory containing the JAR. * Directory containing the JAR.
* @since 2.3.0
*/ */
@Parameter(defaultValue = "${project.build.directory}", required = true) @Parameter(defaultValue = "${project.build.directory}", required = true)
private File sourceDirectory; private File sourceDirectory;
/** /**
* Name of the JAR. * Name of the JAR.
* @since 2.3.0
*/ */
@Parameter(defaultValue = "${project.build.finalName}", readonly = true) @Parameter(defaultValue = "${project.build.finalName}", readonly = true)
private String finalName; private String finalName;
/** /**
* Skip the execution. * Skip the execution.
* @since 2.3.0
*/ */
@Parameter(property = "spring-boot.build-image.skip", defaultValue = "false") @Parameter(property = "spring-boot.build-image.skip", defaultValue = "false")
private boolean skip; private boolean skip;
/** /**
* Classifier used when finding the source jar. * Classifier used when finding the source jar.
* @since 2.3.0
*/ */
@Parameter @Parameter
private String classifier; private String classifier;
/** /**
* Image configuration operations. * Image configuration operations.
* @since 2.3.0
*/ */
@Parameter @Parameter
private Image image; private Image image;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment