Skip to content

Commit

Permalink
Replace graal-sdk with nativeimage, word, and collections
Browse files Browse the repository at this point in the history
Package was split in oracle/graal#7171
  • Loading branch information
zakkak committed Aug 17, 2023
1 parent 8724123 commit c298abc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions build.java
Original file line number Diff line number Diff line change
Expand Up @@ -878,8 +878,6 @@ class Mx


artifacts = Map.ofEntries(
new SimpleEntry<>("org.graalvm.sdk:graal-sdk.jar",
new Path[]{sdkDistPath.resolve("graal-sdk.jar"), Path.of("lib", "jvmci", "graal-sdk.jar")}),
new SimpleEntry<>("org.graalvm.nativeimage:svm.jar",
new Path[]{substrateDistPath.resolve("svm.jar"), Path.of("lib", "svm", "builder", "svm.jar")}),
new SimpleEntry<>("org.graalvm.nativeimage:native-image-base.jar",
Expand All @@ -903,7 +901,13 @@ class Mx
new SimpleEntry<>("org.graalvm.nativeimage:svm-diagnostics-agent.jar",
new Path[]{substrateDistPath.resolve("svm-diagnostics-agent.jar"), Path.of("lib", "graalvm", "svm-diagnostics-agent.jar")}),
new SimpleEntry<>("org.graalvm.nativeimage:svm-configure.jar",
new Path[]{substrateDistPath.resolve("svm-configure.jar"), Path.of("lib", "graalvm", "svm-configure.jar")})
new Path[]{substrateDistPath.resolve("svm-configure.jar"), Path.of("lib", "graalvm", "svm-configure.jar")}),
new SimpleEntry<>("org.graalvm.nativeimage:nativeimage.jar",
new Path[]{sdkDistPath.resolve("nativeimage.jar"), Path.of("lib", "jvmci", "nativeimage.jar")}),
new SimpleEntry<>("org.graalvm.word:word.jar",
new Path[]{sdkDistPath.resolve("word.jar"), Path.of("lib", "jvmci", "word.jar")}),
new SimpleEntry<>("org.graalvm.word:collections.jar",
new Path[]{sdkDistPath.resolve("collections.jar"), Path.of("lib", "jvmci", "collections.jar")})
);

macroPaths = Map.ofEntries(
Expand All @@ -915,7 +919,7 @@ class Mx

static final List<BuildArgs> DEPLOY_ARTIFACTS_STEPS = List.of(
BuildArgs.of("--only",
"GRAAL_SDK," +
"NATIVEIMAGE," +
"SVM," +
"NATIVE_IMAGE_BASE," +
"POINTSTO," +
Expand Down

0 comments on commit c298abc

Please sign in to comment.