Skip to content

Commit 7ae275d

Browse files
committed
final name, improved readme
1 parent 16a1ee8 commit 7ae275d

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
Data Sharing Framework (DSF) FHIR Validator
1+
# Data Sharing Framework (DSF) FHIR Validator
2+
3+
### Build
4+
`mvn install`
5+
6+
### Run
7+
By default the validator is configured to expand value-sets via https://ontoserver.mii-termserv.de and thus requires a client certificate to be configured.
8+
9+
Create `application.properties` file with the following content in your execution directory:
10+
11+
```
12+
dev.dsf.validation.valueset.expansion.client.authentication.certificate:certificate.pem
13+
dev.dsf.validation.valueset.expansion.client.authentication.certificate.private.key.password:private_key_password
14+
dev.dsf.validation.valueset.expansion.client.authentication.certificate.private.key:privatekey.pem
15+
```
16+
17+
`java -jar target/dsf-fhir-validator.jar fhir-resource-to-validate.xml` (.json supported also)

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@
212212
</pluginManagement>
213213

214214
<plugins>
215-
<!--<plugin>
215+
<plugin>
216216
<groupId>org.codehaus.mojo</groupId>
217217
<artifactId>buildnumber-maven-plugin</artifactId>
218218
<executions>
@@ -226,7 +226,7 @@
226226
<configuration>
227227
<revisionOnScmFailure>?</revisionOnScmFailure>
228228
</configuration>
229-
</plugin>-->
229+
</plugin>
230230
<plugin>
231231
<groupId>net.revelc.code.formatter</groupId>
232232
<artifactId>formatter-maven-plugin</artifactId>
@@ -279,6 +279,8 @@
279279
<descriptorRefs>
280280
<descriptorRef>jar-with-dependencies</descriptorRef>
281281
</descriptorRefs>
282+
<appendAssemblyId>false</appendAssemblyId>
283+
<finalName>${project.artifactId}</finalName>
282284
</configuration>
283285
<executions>
284286
<execution>

0 commit comments

Comments
 (0)