Last updated 8 hours ago
Elemento is available in . The easiest way is to import its BOM
and add a dependency to either
or
depending on your stack. If you're using GWT, inherit from org.jboss.elemento.Core:
org.jboss.elemento.Core
<dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.elemento</groupId> <artifactId>elemento-bom</artifactId> <version>1.7.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
<dependency> <groupId>org.jboss.elemento</groupId> <artifactId>elemento-core</artifactId> <type>gwt-lib</type> </dependency>
<dependency> <groupId>org.jboss.elemento</groupId> <artifactId>elemento-core</artifactId> </dependency>
<module> <inherits name="org.jboss.elemento.Core"/> </module>