Skip to content

Commit

Permalink
Merge pull request #465 from quarkiverse/use_graalsdk
Browse files Browse the repository at this point in the history
Use `graal-sdk` instead of `svm`
  • Loading branch information
loicmathieu committed Jul 17, 2023
2 parents 477aedb + 588e617 commit 6a5cf72
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
4 changes: 2 additions & 2 deletions bigtable/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
<artifactId>quarkus-grpc-common</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>svm</artifactId>
<groupId>org.graalvm.sdk</groupId>
<artifactId>graal-sdk</artifactId>
</dependency>
</dependencies>

Expand Down
10 changes: 1 addition & 9 deletions common/grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,10 @@
</exclusion>
</exclusions>
</dependency>
<!--
On GraalVM 22.3, the substitution annotations will be on the graal-sdk lib, so we add both lib here
to be able to support 22.2 and 22.3.
-->
<dependency>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>svm</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>graal-sdk</artifactId>
</dependency>
</dependencies>

</project>
</project>
4 changes: 2 additions & 2 deletions common/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
<artifactId>commons-logging-jboss-logging</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.nativeimage</groupId>
<artifactId>svm</artifactId>
<groupId>org.graalvm.sdk</groupId>
<artifactId>graal-sdk</artifactId>
</dependency>
</dependencies>

Expand Down

0 comments on commit 6a5cf72

Please sign in to comment.