Skip to content

Commit 331ebe9

Browse files
committed
Restore @SInCE on build-image parameters
1 parent 63019ab commit 331ebe9

File tree

1 file changed

+5
-0
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven

1 file changed

+5
-0
lines changed

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/BuildImageMojo.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,30 +63,35 @@ public class BuildImageMojo extends AbstractPackagerMojo {
6363

6464
/**
6565
* Directory containing the JAR.
66+
* @since 2.3.0
6667
*/
6768
@Parameter(defaultValue = "${project.build.directory}", required = true)
6869
private File sourceDirectory;
6970

7071
/**
7172
* Name of the JAR.
73+
* @since 2.3.0
7274
*/
7375
@Parameter(defaultValue = "${project.build.finalName}", readonly = true)
7476
private String finalName;
7577

7678
/**
7779
* Skip the execution.
80+
* @since 2.3.0
7881
*/
7982
@Parameter(property = "spring-boot.build-image.skip", defaultValue = "false")
8083
private boolean skip;
8184

8285
/**
8386
* Classifier used when finding the source jar.
87+
* @since 2.3.0
8488
*/
8589
@Parameter
8690
private String classifier;
8791

8892
/**
8993
* Image configuration operations.
94+
* @since 2.3.0
9095
*/
9196
@Parameter
9297
private Image image;

0 commit comments

Comments
 (0)