From dd11cd7e2bcea5cb25b3ddbb9a63d59330eee5b2 Mon Sep 17 00:00:00 2001 From: Alexandre POCINHO <apo@kereval.com> Date: Fri, 21 Jun 2024 12:21:22 +0200 Subject: [PATCH] add FhirSimulator documentation --- FHIR-Simulator/installation.md | 37 ++++++++++++++++++++++++++++++++++ FHIR-Simulator/release-note.md | 20 ++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100755 FHIR-Simulator/installation.md create mode 100755 FHIR-Simulator/release-note.md diff --git a/FHIR-Simulator/installation.md b/FHIR-Simulator/installation.md new file mode 100755 index 0000000..34568d2 --- /dev/null +++ b/FHIR-Simulator/installation.md @@ -0,0 +1,37 @@ +#--- +#title: Release note +#subtitle: FHIR Simulator +#toolversion: 1.1.0 +#releasedate: 2024-06-21 +#authors: Achraf ACHKARI-BEGDOURI / Romuald DUBOURG +#function: Software Engineer +#customer: IHE Europe +#reference: +#--- + +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 + +# Sources & binaries + +- Link to project : https://gitlab.inria.fr/gazelle/public/simulation/fhir-simulators + +- Declaration in your pom.xml + +```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> +``` diff --git a/FHIR-Simulator/release-note.md b/FHIR-Simulator/release-note.md new file mode 100755 index 0000000..a433d07 --- /dev/null +++ b/FHIR-Simulator/release-note.md @@ -0,0 +1,20 @@ +#--- +#title: Release note +#subtitle: FHIR Simulator +#toolversion: 1.1.0 +#releasedate: 2024-06-21 +#authors: Achraf ACHKARI-BEGDOURI / Romuald DUBOURG +#function: Software Engineer +#customer: IHE Europe +#reference: +#--- +_Release date: 2024-06-21_ +# All changes + +__Story__ +* \[[FHIRSIMU-25](https://gazelle.ihe.net/jira/browse/FHIRSIMU-25)\] Validate Fhir Resource with HTTP Val + +# Dependencies + +# Remarks + -- GitLab