Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
emersonf committed Sep 11, 2015
2 parents 8040a85 + 6b92299 commit d28ed23
Show file tree
Hide file tree
Showing 279 changed files with 21,319 additions and 7,035 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: java
jdk:
- oraclejdk8

notifications:
slack:
rooms:
secure: F+o9FPgJxD6KnpcvCGm2VgvY72aCo/+RwBoIZoArB68L41rgiOUoKbqkH3Y1vLaqw6isyqa6dkuBKyFoKVwyjuDYn7Iaw2z86WZWRCB4SkqcAnVWQCUGZVPrFh38hUl++gUEYbzIPDLm8RgKOJr/9XBZaMoATJlmoenI9ZMuncI=
sudo: false

cache:
directories:
- $HOME/.gradle/wrapper/dists/gradle-2.6-bin
- $HOME/.gradle/caches/modules-2/files-2.1
396 changes: 208 additions & 188 deletions README.md

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,25 @@ subprojects {
apply plugin: 'java'

repositories {
mavenLocal()
mavenCentral()
jcenter()
}

group = 'org.openmhealth.shim'

ext {
javaVersion = 1.7
shimServerVersion = '0.2.3'
javaVersion = 1.8
shimmerVersion = '0.3.0.SNAPSHOT'
omhSchemaSdkVersion = '1.0.3'
}

sourceCompatibility = javaVersion
targetCompatibility = javaVersion

test {
useTestNG()
}
}

task wrapper(type: Wrapper) {
gradleVersion = '2.2.1'
gradleVersion = '2.6'
}
17 changes: 17 additions & 0 deletions docker-compose-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
resourceserver:
build: shim-server/docker
environment:
SPRING_PROFILES_ACTIVE: development
OPENMHEALTH_SHIM_SERVER_CALLBACKURLBASE: http://192.168.99.100:8083
links:
- mongo:mongo

mongo:
image: mongo

console:
build: shim-server-ui/docker
ports:
- "8083:8083"
links:
- resourceserver:resource-server
17 changes: 17 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
resourceserver:
image: openmhealth/shimmer-resource-server
environment:
SPRING_PROFILES_ACTIVE: development
OPENMHEALTH_SHIM_SERVER_CALLBACKURLBASE: http://192.168.99.100:8083
links:
- mongo:mongo

mongo:
image: mongo

console:
image: openmhealth/shimmer-console
ports:
- "8083:8083"
links:
- resourceserver:resource-server
9 changes: 0 additions & 9 deletions docker/binary/Dockerfile

This file was deleted.

60 changes: 0 additions & 60 deletions docker/source/Dockerfile

This file was deleted.

12 changes: 0 additions & 12 deletions docker/source/supervisord.conf

This file was deleted.

Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Jan 09 15:27:10 CET 2015
#Wed Sep 09 09:22:31 CEST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip
3 changes: 0 additions & 3 deletions java-schema-objects/.gitignore

This file was deleted.

17 changes: 0 additions & 17 deletions java-schema-objects/build.gradle

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit d28ed23

Please sign in to comment.