Skip to content

Commit 8cecec6

Browse files
authored
Add missing getters (#667)
Fixes #665
1 parent 4aec3e5 commit 8cecec6

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

common/graalvm-reachability-metadata/src/main/java/org/graalvm/reachability/DirectoryConfiguration.java

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,18 @@ public boolean isOverride() {
8080
return override;
8181
}
8282

83+
public String getGroupId() {
84+
return groupId;
85+
}
86+
87+
public String getArtifactId() {
88+
return artifactId;
89+
}
90+
91+
public String getVersion() {
92+
return version;
93+
}
94+
8395
public static void copy(Collection<DirectoryConfiguration> configurations, Path destinationDirectory) throws IOException {
8496
Path nativeImageDestination = destinationDirectory.resolve("META-INF").resolve("native-image");
8597
for (DirectoryConfiguration configuration : configurations) {
@@ -129,5 +141,3 @@ private static void writeConfigurationProperties(DirectoryConfiguration configur
129141
}
130142
}
131143
}
132-
133-

docs/src/docs/asciidoc/changelog.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
[[changelog]]
22
== Changelog
33

4+
== Release 0.10.5
5+
6+
- Add missing getters to `DirectoryConfiguration`
7+
48
=== Release 0.10.3
59

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

0 commit comments

Comments
 (0)