Skip to content

feat: spring-boot.build-image.* should not be read-only #43596

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,84 +107,84 @@ public abstract class BuildImageMojo extends AbstractPackagerMojo {
* property.
* @since 2.3.0
*/
@Parameter(property = "spring-boot.build-image.imageName", readonly = true)
@Parameter(property = "spring-boot.build-image.imageName")
String imageName;

/**
* Alias for {@link Image#builder} to support configuration through command-line
* property.
* @since 2.3.0
*/
@Parameter(property = "spring-boot.build-image.builder", readonly = true)
@Parameter(property = "spring-boot.build-image.builder")
String imageBuilder;

/**
* Alias for {@link Image#trustBuilder} to support configuration through command-line
* property.
*/
@Parameter(property = "spring-boot.build-image.trustBuilder", readonly = true)
@Parameter(property = "spring-boot.build-image.trustBuilder")
Boolean trustBuilder;

/**
* Alias for {@link Image#runImage} to support configuration through command-line
* property.
* @since 2.3.1
*/
@Parameter(property = "spring-boot.build-image.runImage", readonly = true)
@Parameter(property = "spring-boot.build-image.runImage")
String runImage;

/**
* Alias for {@link Image#cleanCache} to support configuration through command-line
* property.
* @since 2.4.0
*/
@Parameter(property = "spring-boot.build-image.cleanCache", readonly = true)
@Parameter(property = "spring-boot.build-image.cleanCache")
Boolean cleanCache;

/**
* Alias for {@link Image#pullPolicy} to support configuration through command-line
* property.
*/
@Parameter(property = "spring-boot.build-image.pullPolicy", readonly = true)
@Parameter(property = "spring-boot.build-image.pullPolicy")
PullPolicy pullPolicy;

/**
* Alias for {@link Image#publish} to support configuration through command-line
* property.
*/
@Parameter(property = "spring-boot.build-image.publish", readonly = true)
@Parameter(property = "spring-boot.build-image.publish")
Boolean publish;

/**
* Alias for {@link Image#network} to support configuration through command-line
* property.
* @since 2.6.0
*/
@Parameter(property = "spring-boot.build-image.network", readonly = true)
@Parameter(property = "spring-boot.build-image.network")
String network;

/**
* Alias for {@link Image#createdDate} to support configuration through command-line
* property.
* @since 3.1.0
*/
@Parameter(property = "spring-boot.build-image.createdDate", readonly = true)
@Parameter(property = "spring-boot.build-image.createdDate")
String createdDate;

/**
* Alias for {@link Image#applicationDirectory} to support configuration through
* command-line property.
* @since 3.1.0
*/
@Parameter(property = "spring-boot.build-image.applicationDirectory", readonly = true)
@Parameter(property = "spring-boot.build-image.applicationDirectory")
String applicationDirectory;

/**
* Alias for {@link Image#imagePlatform} to support configuration through command-line
* property.
* @since 3.4.0
*/
@Parameter(property = "spring-boot.build-image.imagePlatform", readonly = true)
@Parameter(property = "spring-boot.build-image.imagePlatform")
String imagePlatform;

/**
Expand Down
Loading