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

Commit dc4d8a2

Browse files
committed
Updated SDKs to 0.14.2 and End2End to use 0.14.2 version for ORC
1 parent e1d66eb commit dc4d8a2

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

sdk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ allprojects {
2929

3030
apply plugin: 'idea'
3131
group = 'com.microsoft.services'
32-
version = '0.14.1'
32+
version = '0.14.2'
3333
}
3434

3535
//overriding version number for graph-services
3636
project(':graph-services'){
3737
apply plugin: 'idea'
3838
group = 'com.microsoft.services'
39-
version = '0.2.0'
39+
version = '0.2.1'
4040
}

sdk/discovery-services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'java'
33
dependencies {
44

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

99
apply from :'../java-libraries.gradle'

sdk/file-services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'java'
22

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

77
apply from :'../java-libraries.gradle'

sdk/graph-services/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apply plugin: 'java'
22

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

8-
version = '0.2.0'
8+
version = '0.2.1'
99
apply from :'../java-libraries.gradle'

sdk/onenote-services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'java'
22

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

88
apply from :'../java-libraries.gradle'

sdk/outlook-services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'java'
22

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

88
apply from :'../java-libraries.gradle'

tests/e2e-test-app/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ dependencies {
3636
exclude group: 'com.android.support'
3737
}
3838

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

4343
compile project(':outlook-services')
4444
compile project(':directory-services')

tests/e2e-test-app/app/src/main/java/com/microsoft/office365/test/integration/tests/FilesTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public FilesTests() {
3636
this.addTest(canUpdateFile("Can update file", true));
3737
this.addTest(canUpdateFileContent("Can update file content", true));
3838
this.addTest(canGetDrive("Can get drive", false));
39-
this.addTest(canGetFilesTyped("Can get files typed with derived classes", false));
40-
this.addTest(canGetFileTyped("Can get file typed with derived class", false));
39+
this.addTest(canGetFilesTyped("Can get files typed with derived classes", true));
40+
this.addTest(canGetFileTyped("Can get file typed with derived class", true));
4141
this.addTest(canDeleteFiles("Can delete files", true));
4242
//Select, top
4343
this.addTest(canSelectFiles("Can use select in files", true));

0 commit comments

Comments
 (0)