Skip to content

Best practices for library development with custom features #5811

Answered by fniephaus
kkriske asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @kkriske,

Thanks for raising this. Lots of interesting but complicated questions. Let me try to answer them one by one as well as I can...

Is this the proper way to add support for current and upcoming GraalVM releases?

I'd say it is the proper way to add support for a specific GraalVM release. Maven typically requires a specific version, so you can't say use the latest version of some dependency. If it helps, you could make the GraalVM version adjustable with something like:

  <properties>
    <!-- ... -->
    <graalvm-version>22.3.0</graalvm-version>
  </properties>

  <dependency>
      <groupId>org.graalvm.sdk</groupId>
      <artifactId>graal-sdk</artifactId>
      <version>${gr…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@kkriske
Comment options

@kkriske
Comment options

@fniephaus
Comment options

@pyckle
Comment options

Answer selected by alina-yur
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants