Skip to content

Commit 7ecd612

Browse files
authored
Merge pull request #236 from microsoftgraph/dev
release 2.0.5
2 parents e7ff35e + 51aa1d1 commit 7ecd612

File tree

15 files changed

+152
-133
lines changed

15 files changed

+152
-133
lines changed

.github/workflows/api-level-lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "Checks the SDK only using APIs from the targeted API level"
22

3-
on:
3+
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- dev

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "CodeQL"
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [dev, master]
67
pull_request:

.github/workflows/conflicting-pr-label.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ name: PullRequestConflicting
55
# Controls when the action will run. Triggers the workflow on push or pull request
66
# events but only for the master branch
77
on:
8+
workflow_dispatch:
89
push:
910
branches: [ master, dev ]
1011
pull_request:

.github/workflows/sample-build-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "samples build check"
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths:
67
- '**/*.java'

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Static analysis with SonarCloud
22
on:
3+
workflow_dispatch:
34
push:
45
branches:
56
- master

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
id 'signing'
1616
id 'jacoco'
1717
id 'com.github.spotbugs' version '4.7.1'
18-
id "org.sonarqube" version "3.2.0"
18+
id "org.sonarqube" version "3.3"
1919
}
2020

2121
java {
@@ -91,8 +91,8 @@ def pomConfig = {
9191

9292
sonarqube {
9393
properties {
94-
property "sonar.projectKey", "msgraph-sdk-java-core"
95-
property "sonar.organization", "microsoftgraph"
94+
property "sonar.projectKey", "microsoftgraph_msgraph-sdk-java-core"
95+
property "sonar.organization", "microsoftgraph2"
9696
property "sonar.host.url", "https://sonarcloud.io"
9797
}
9898
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ mavenGroupId = com.microsoft.graph
2525
mavenArtifactId = microsoft-graph-core
2626
mavenMajorVersion = 2
2727
mavenMinorVersion = 0
28-
mavenPatchVersion = 4
28+
mavenPatchVersion = 5
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ dependencies {
22
// Use JUnit test framework
33
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
44
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
5-
testImplementation 'org.mockito:mockito-inline:3.10.0'
5+
testImplementation 'org.mockito:mockito-inline:3.11.1'
66

77
api 'com.squareup.okhttp3:okhttp:4.9.1'
88

99
implementation 'com.google.guava:guava:30.1.1-jre'
1010

1111
implementation 'com.google.code.gson:gson:2.8.7'
12-
api 'com.azure:azure-core:1.16.0'
12+
api 'com.azure:azure-core:1.17.0'
1313
}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>com.azure</groupId>
3737
<artifactId>azure-core</artifactId>
38-
<version>1.16.0</version>
38+
<version>1.17.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.junit.jupiter</groupId>
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>org.mockito</groupId>
4848
<artifactId>mockito-inline</artifactId>
49-
<version>3.10.0</version>
49+
<version>3.11.1</version>
5050
<scope>test</scope>
5151
</dependency>
5252
</dependencies>

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ repositories {
2222
2323
dependencies {
2424
// Include the sdk as a dependency
25-
implementation 'com.microsoft.graph:microsoft-graph-core:2.0.4'
25+
implementation 'com.microsoft.graph:microsoft-graph-core:2.0.5'
2626
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
27-
implementation 'com.azure:azure-identity:1.2.5'
27+
implementation 'com.azure:azure-identity:1.3.1'
2828
}
2929
```
3030

@@ -37,11 +37,11 @@ Add the dependency in `dependencies` in pom.xml
3737
<!-- Include the sdk as a dependency -->
3838
<groupId>com.microsoft.graph</groupId>
3939
<artifactId>microsoft-graph-core</artifactId>
40-
<version>2.0.4</version>
40+
<version>2.0.5</version>
4141
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
4242
<groupId>com.azure</groupId>
4343
<artifactId>azure-identity</artifactId>
44-
<version>1.2.5</version>
44+
<version>1.3.1</version>
4545
</dependency>
4646
```
4747

0 commit comments

Comments
 (0)