Skip to content

Commit

Permalink
Merge pull request #127 from RADAR-base/release-0.3.4
Browse files Browse the repository at this point in the history
release 0.3.4
  • Loading branch information
yatharthranjan committed Jun 4, 2018
2 parents 6151cb4 + adabe47 commit 64145a8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions commons/active/questionnaire/questionnaire.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"type": "record",
"doc": "Questionnaire answer.",
"fields": [
{ "name": "questionId", "type": ["null", "string"], "doc": "Unique identifier for the specific question.", "default": null },
{ "name": "value", "type": ["int", "string", "double"], "doc": "Subject answer." },
{ "name": "startTime", "type": "double", "doc": "Timestamp in UTC (s) when the question is shown." },
{ "name": "endTime", "type": "double", "doc": "Timestamp in UTC (s) when the question is answered." }
Expand Down
6 changes: 3 additions & 3 deletions java-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ repositories {
dependencies {
// Commons schemas (backend, passive remote monitoring app)
compile 'org.radarcns:radar-schemas-commons:0.3.2'
compile 'org.radarcns:radar-schemas-commons:0.3.4'
// REST API schemas (REST API, testing)
compile 'org.radarcns:radar-schemas-restapi:0.3.2'
compile 'org.radarcns:radar-schemas-restapi:0.3.4'
// Questionnaire schemas (active remote monitoring app)
compile 'org.radarcns:radar-schemas-tools:0.3.2'
compile 'org.radarcns:radar-schemas-tools:0.3.4'
}
```
Usually, you only need to include the schemas you actually need in your dependencies.
Expand Down
2 changes: 1 addition & 1 deletion java-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ subprojects {
apply plugin: 'idea'

// Configuration
version = '0.3.3'
version = '0.3.4'
group = 'org.radarcns'
ext.githubRepoName = 'RADAR-CNS/RADAR-Schemas'

Expand Down
1 change: 1 addition & 0 deletions java-sdk/radar-schemas-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ dependencies {

runtimeOnly group: 'org.glassfish.jersey.media', name: 'jersey-media-json-jackson', version: jerseyVersion
runtimeOnly group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
runtimeOnly group: 'org.glassfish.jersey.inject', name: 'jersey-hk2', version: jerseyVersion

testCompile group: 'junit', name: 'junit', version: junitVersion
}
Expand Down

0 comments on commit 64145a8

Please sign in to comment.