You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above command publishes to a "common" repository located at `build/common-repo`.
53
54
54
-
Next, update the plugin version string in the project build files.
55
-
The version can be found manually by searching for the published artifacts in `~/.m2/repository/org/graalvm/buildtools/native/`, or alternatively by checking the `nativeBuildTools` property [here](gradle/libs.versions.toml).
55
+
Next, update the project build files:
56
+
1. Update the version string. The version can be found manually by searching for the published artifacts in `~/.m2/repository/org/graalvm/buildtools/native/`, or alternatively by checking the `nativeBuildTools` property [here](gradle/libs.versions.toml).
57
+
2. Update the list of repositories to include and prioritize the common repo.
56
58
57
-
For Gradle, the change looks like the following.
58
-
You may also need to direct Gradle to use the local Maven repository to resolve the plugin:
59
+
###Gradle
60
+
Make the following changes to the build files:
59
61
```bash
60
62
# build.gradle
61
63
plugins {
@@ -64,25 +66,48 @@ You may also need to direct Gradle to use the local Maven repository to resolve
64
66
+ id 'org.graalvm.buildtools.native' version '0.10.5-SNAPSHOT'
0 commit comments