Skip to content

Commit

Permalink
Update dependency org.graalvm.buildtools:native-gradle-plugin to v0.9…
Browse files Browse the repository at this point in the history
….25 (#800)

* Update dependency org.graalvm.buildtools:native-gradle-plugin to v0.9.25

* Add missing overrides

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Cedric Champeau <cedric.champeau@gmail.com>
  • Loading branch information
renovate[bot] and melix authored Aug 29, 2023
1 parent 50f1e13 commit 425a502
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import org.gradle.api.Project;
import org.gradle.api.Task;
import org.gradle.api.file.ConfigurableFileCollection;
import org.gradle.api.file.DirectoryProperty;
import org.gradle.api.file.ProjectLayout;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.plugins.BasePlugin;
Expand Down Expand Up @@ -353,6 +354,16 @@ public DeprecatedAgentOptions getAgent() {
public Property<String> getRequiredVersion() {
return delegate.getRequiredVersion();
}

@Override
public Property<Boolean> getPgoInstrument() {
return delegate.getPgoInstrument();
}

@Override
public DirectoryProperty getPgoProfilesDirectory() {
return delegate.getPgoProfilesDirectory();
}
};
})
);
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ groovy = "3.0.19"
spock = "2.1-groovy-3.0"
oraclelinux = "9"
alpine="3.16"
graalvmPlugin = "0.9.23"
graalvmPlugin = "0.9.25"
micronaut-platform = "4.0.1" # This is the platform version, used in our tests
micronaut-aot = "2.0.1"
micronaut-testresources = "2.0.0"
Expand Down

0 comments on commit 425a502

Please sign in to comment.