Skip to content

Commit

Permalink
Add missing getters (#667)
Browse files Browse the repository at this point in the history
Fixes #665
  • Loading branch information
melix authored Jan 15, 2025
1 parent 4aec3e5 commit 8cecec6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,18 @@ public boolean isOverride() {
return override;
}

public String getGroupId() {
return groupId;
}

public String getArtifactId() {
return artifactId;
}

public String getVersion() {
return version;
}

public static void copy(Collection<DirectoryConfiguration> configurations, Path destinationDirectory) throws IOException {
Path nativeImageDestination = destinationDirectory.resolve("META-INF").resolve("native-image");
for (DirectoryConfiguration configuration : configurations) {
Expand Down Expand Up @@ -129,5 +141,3 @@ private static void writeConfigurationProperties(DirectoryConfiguration configur
}
}
}


4 changes: 4 additions & 0 deletions docs/src/docs/asciidoc/changelog.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
[[changelog]]
== Changelog

== Release 0.10.5

- Add missing getters to `DirectoryConfiguration`

=== Release 0.10.3

- Remove usage of macro from merger tool initialization and throw better error if executable does not exist
Expand Down

0 comments on commit 8cecec6

Please sign in to comment.