Skip to content

Commit 3383344

Browse files
committed
Add missing getters
Fixes #665
1 parent e05d314 commit 3383344

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

+12-2
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/index.adoc

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ If you are using alternative build systems, see <<alternative-build-systems.adoc
1919
[[changelog]]
2020
== Changelog
2121

22+
== Release 0.10.5
23+
24+
- Add missing getters to `DirectoryConfiguration`
25+
2226
=== Release 0.10.3
2327

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

0 commit comments

Comments
 (0)