Skip to content

Commit

Permalink
Fix typos in reachability metadata gradle tasks descriptions (#463)
Browse files Browse the repository at this point in the history
* metadataCopy: replaces 'metdata' with 'metadata'
* collectReachabilityMetadata: removes trailing dot to match all other task's descriptions
  • Loading branch information
abelsromero committed Jul 12, 2023
1 parent 42fac01 commit 6e4a273
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private void configureJavaProject(Project project, Provider<NativeImageService>

project.getTasks().register("metadataCopy", MetadataCopyTask.class, task -> {
task.setGroup(LifecycleBasePlugin.BUILD_GROUP);
task.setDescription("Copies metadata collected from tasks instrumented with the agent into target directories.");
task.setDescription("Copies metadata collected from tasks instrumented with the agent into target directories");
task.getInputTaskNames().set(graalExtension.getAgent().getMetadataCopy().getInputTaskNames());
task.getOutputDirectories().set(graalExtension.getAgent().getMetadataCopy().getOutputDirectories());
task.getMergeWithExisting().set(graalExtension.getAgent().getMetadataCopy().getMergeWithExisting());
Expand All @@ -285,7 +285,7 @@ private void configureJavaProject(Project project, Provider<NativeImageService>

project.getTasks().register("collectReachabilityMetadata", CollectReachabilityMetadata.class, task -> {
task.setGroup(LifecycleBasePlugin.BUILD_GROUP);
task.setDescription("Obtains native reachability metdata for the runtime classpath configuration");
task.setDescription("Obtains native reachability metadata for the runtime classpath configuration");
task.setClasspath(project.getConfigurations().getByName(JavaPlugin.RUNTIME_CLASSPATH_CONFIGURATION_NAME));
});

Expand Down

0 comments on commit 6e4a273

Please sign in to comment.