Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ChangeLog
* **0.49-SNAPSHOT**:
- Fixed static default for outputDirectory when using diverting build directories ([1855](https://github.com/fabric8io/docker-maven-plugin/pull/1855))

* **0.48.0 (2025-11-17)**:
- Allow saving multiple images in docker:save using new parameters saveNames and saveAliases.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public abstract class AbstractDockerMojo extends AbstractMojo implements ConfigH
@Parameter(property = "docker.source.dir", defaultValue="src/main/docker")
public String sourceDirectory;

@Parameter(property = "docker.target.dir", defaultValue="target/docker")
@Parameter(property = "docker.target.dir", defaultValue="${project.build.directory}/docker")
public String outputDirectory;

// Authentication information
Expand Down
Loading