-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e66aacd
commit 6c82a08
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,18 @@ | ||
# InteropEHRate Mobile Research Data Sharing (RDS) Protocol's Library | ||
|
||
## Installation Guide | ||
The process of integrating the `m-rds-logic` library is quite straightforward, as it is provided as a `jar` file, and is hosted in the project's Nexus repository. | ||
|
||
In case a gradle project is created, the following line needs to be inserted in the dependencies section of the build.gradle file: | ||
``` | ||
implementation(group:'eu.interoperhate', name:'rds-simple', version: '0.1.3') | ||
``` | ||
|
||
If the development team importing the library, is using Maven instead of Gradle, the same dependency must be expressed with the following Maven syntax: | ||
``` | ||
<dependency> | ||
<groupId>eu.interopehrate</groupId> | ||
<artifactId>rds-simple</artifactId> | ||
<version>0.1.3</version> | ||
</dependency> | ||
``` |