-
Hi, But the Gitlab IDE shows the message "The 'Open-BPMN' extension is not available in GitLab Web IDE for the Web." Maybe this has something to do with the fact that my extension requires JDK 17. Does anybody know about this topic. What could be the reason the the Gitlab Web ID is not able to load my extension? Thanks for any hints. === |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @rsoika, Gitlab Web IDE only support VSCode webextensions.
In theory, you can also develop a pure web-based GLSP extension. We already provide an example for that. Note that this example uses the TS-based server flavor. For your use case with a Java-backend creating a web extension is not as straight forward. In a nutshell you have to options:
|
Beta Was this translation helpful? Give feedback.
Hi @rsoika,
Gitlab Web IDE only support VSCode webextensions.
General description from the doc:
In theory, you can also develop a pure web-based GLSP extension. We already provide an example for th…