Obtain the artifacts
The Holon Platform is a Java development ecosystem to create and maintain high quality, enteprise-grade web applications and services.
The easiest way to obtain the platform artifacts is by using Maven and the platform BOM (Bill Of Materials).
When the platform BOM is imported in your Maven project, you can declare the dependecies you need only specifying their group id
and artifact id
: the last artifact production version according to the platform version will be provided.
Explore the Holon Platform Modules to learn about the available artifacts.
Latest platform version: 5.5.0
<dependencyManagement>
<dependency>
<groupId>com.holon-platform</groupId>
<artifactId>bom</artifactId>
<version>5.5.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencyManagement>
<dependencies>
<!-- Example: JAX-RS starter using Jersey, Gson and Undertow -->
<dependency>
<groupId>com.holon-platform.jaxrs</groupId>
<artifactId>holon-starter-jersey-undertow-gson</artifactId>
</dependency>
</dependencies>