q-shift / backstage-plugins

Apache License 2.0
3 stars 7 forks source link

List of extensions name could change between quarkus releases #58

Open cmoulliard opened 8 months ago

cmoulliard commented 8 months ago

Issue

The list of some extensions could change between the quarkus releases (example 3.2 vs 3.9) and by consequence the list displayed within the scaffolded template should be filtered accordingly

3.2 or 3.8

  "extensions": [
    "io.quarkus:quarkus-resteasy-reactive",

3.9

  "extensions": [
    "io.quarkus:quarkus-rest",
...

Warning: If we pass within the POST request wrong extension names, then an error will occur during action quarkus:create:app !

We can get the proper list of extensions using this query:

http --follow https://code.quarkus.io/api/extensions/stream/io.quarkus.platform:3.9

FYI: @iocanel