Hello, we have a maven-based war project. We use myfaces tobago as component library.
Here are our dependencies inside the project: <dependency> <groupId>jakarta.platform</groupId> <artifactId>jakarta.jakartaee-api</artifactId> <version>4.0.2</version> </dependency> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-api</artifactId> <version>10.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.myfaces.tobago</groupId> <artifactId>tobago-core</artifactId> <version>6.4.0</version> <scope>compile</scope> </dependency> With this combination the contents of the xhtml-file are no longer marked as unknown, but we are missing the suggestion feature we get for standard html. The namespace is included: xmlns:tc="http://myfaces.apache.org/tobago/component" xmlns:ui="http://xmlns.jcp.org/jsf/facelets" xmlns:f="http://xmlns.jcp.org/jsf/core" When I type < I get the html suggestion, <f: or <tc: or <ui: no suggestions ar given. In the properties dialog of the project JavaServer Faces is selected as framwork, but no component framework is offered. Do you have a hint for us to get this to work? Am I missing some configuration? Greetings, Bernd