Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Updated SDKs to 0.14.2 and End2End to use 0.14.2 version for ORC
Browse files Browse the repository at this point in the history
  • Loading branch information
anihojnadel committed Jun 11, 2015
1 parent e1d66eb commit dc4d8a2
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ allprojects {

apply plugin: 'idea'
group = 'com.microsoft.services'
version = '0.14.1'
version = '0.14.2'
}

//overriding version number for graph-services
project(':graph-services'){
apply plugin: 'idea'
group = 'com.microsoft.services'
version = '0.2.0'
version = '0.2.1'
}
2 changes: 1 addition & 1 deletion sdk/discovery-services/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'java'
dependencies {

compile fileTree(dir: 'libs', include: ['*.jar'])
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.1', changing: true
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.2', changing: true
}

apply from :'../java-libraries.gradle'
2 changes: 1 addition & 1 deletion sdk/file-services/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'java'

dependencies {
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.1', changing: true
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.2', changing: true
}

apply from :'../java-libraries.gradle'
4 changes: 2 additions & 2 deletions sdk/graph-services/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apply plugin: 'java'

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.1', changing: true
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.2', changing: true
}

version = '0.2.0'
version = '0.2.1'
apply from :'../java-libraries.gradle'
2 changes: 1 addition & 1 deletion sdk/onenote-services/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.1', changing: true
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.2', changing: true
}

apply from :'../java-libraries.gradle'
2 changes: 1 addition & 1 deletion sdk/outlook-services/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.1', changing: true
compile group: 'com.microsoft.orc' , name: 'orc-engine-core' , version: '0.14.2', changing: true
}

apply from :'../java-libraries.gradle'
6 changes: 3 additions & 3 deletions tests/e2e-test-app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ dependencies {
exclude group: 'com.android.support'
}

compile(group: 'com.microsoft.orc', name: 'orc-engine-core', version: '0.14.1', ext: 'jar', changing: true)
compile(group: 'com.microsoft.orc', name: 'live-auth', version: '0.14.1', ext: 'aar', changing: true)
compile(group: 'com.microsoft.orc', name: 'orc-engine-android', version: '0.14.1', ext: 'aar', changing: true)
compile(group: 'com.microsoft.orc', name: 'orc-engine-core', version: '0.14.2', ext: 'jar', changing: true)
compile(group: 'com.microsoft.orc', name: 'live-auth', version: '0.14.2', ext: 'aar', changing: true)
compile(group: 'com.microsoft.orc', name: 'orc-engine-android', version: '0.14.2', ext: 'aar', changing: true)

compile project(':outlook-services')
compile project(':directory-services')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public FilesTests() {
this.addTest(canUpdateFile("Can update file", true));
this.addTest(canUpdateFileContent("Can update file content", true));
this.addTest(canGetDrive("Can get drive", false));
this.addTest(canGetFilesTyped("Can get files typed with derived classes", false));
this.addTest(canGetFileTyped("Can get file typed with derived class", false));
this.addTest(canGetFilesTyped("Can get files typed with derived classes", true));
this.addTest(canGetFileTyped("Can get file typed with derived class", true));
this.addTest(canDeleteFiles("Can delete files", true));
//Select, top
this.addTest(canSelectFiles("Can use select in files", true));
Expand Down

0 comments on commit dc4d8a2

Please sign in to comment.