Skip to content

Commit 124ce8d

Browse files
authored
Merge pull request #623 from microsoftgraph/feature/major-bump
- major bump
2 parents 3bf976b + 52373c2 commit 124ce8d

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:2.5.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:3.0.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:29.0-android'
2525
}
@@ -33,7 +33,7 @@ Add the dependency in `dependencies` in pom.xml
3333
<dependency>
3434
<groupId>com.microsoft.graph</groupId>
3535
<artifactId>microsoft-graph</artifactId>
36-
<version>2.5.0</version>
36+
<version>3.0.0</version>
3737
</dependency>
3838
```
3939

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ org.gradle.caching=true
2525

2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
28-
mavenMajorVersion = 2
29-
mavenMinorVersion = 5
28+
mavenMajorVersion = 3
29+
mavenMinorVersion = 0
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ dependencies {
1010
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
1111

1212
// Core Http library
13-
api 'com.microsoft.graph:microsoft-graph-core:1.0.7-SNAPSHOT' //TODO update version when releasing
13+
api 'com.microsoft.graph:microsoft-graph-core:2.0.0-SNAPSHOT' //TODO update version when releasing
1414
}

src/main/java/com/microsoft/graph/info/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ private Constants() {
1818
/** The client secret to use for unit testing */
1919
public static final String CLIENTSECRET = "clientsecret";
2020
/** The SDK version */
21-
public static final String VERSION_NAME = "2.5.0";
21+
public static final String VERSION_NAME = "3.0.0";
2222
}
2323

typesummary/app/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ repositories {
1717
flatDir {
1818
dirs '../../build/libs'
1919
}
20+
jcenter { //TODO remove when releasing
21+
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local'
22+
}
2023
}
2124

2225
dependencies {
2326
implementation 'com.google.guava:guava:29.0-jre'
2427

25-
implementation 'com.microsoft.graph:microsoft-graph-core:1.0.5'
28+
implementation 'com.microsoft.graph:microsoft-graph-core:2.0.0-SNAPSHOT' //TODO update this when releasing
2629

2730
implementation name: 'msgraph-sdk-java'
2831
}

0 commit comments

Comments
 (0)