The FHIR Simulator is a project that gives all tools needed to implement a custom FHIR Simulator for a custom profile. It is in v1.1.0 a library that can be imported in your pom.xml project
Link to project : https://gitlab.inria.fr/gazelle/public/simulation/fhir-simulators
Declaration in your pom.xml
<dependency>
<groupId>net.ihe.gazelle</groupId>
<artifactId>fhir-server-simulator</artifactId>
<version>1.1.0</version> <!-- or any version -->
<exclusions>
<exclusion>
<artifactId>servlet-api</artifactId>
<groupId>javax.servlet</groupId>
</exclusion>
<exclusion>
<artifactId>xpp3</artifactId>
<groupId>org.ogce</groupId>
</exclusion>
</exclusions>
</dependency>