File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed
src/main/java/com/microsoft/graph/info Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ repositories {
1919
2020dependencies {
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
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ org.gradle.caching=true
2525
2626mavenGroupId = com.microsoft.graph
2727mavenArtifactId = microsoft-graph
28- mavenMajorVersion = 2
29- mavenMinorVersion = 5
28+ mavenMajorVersion = 3
29+ mavenMinorVersion = 0
3030mavenPatchVersion = 0
3131mavenArtifactSuffix =
3232nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
2225dependencies {
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}
You can’t perform that action at this time.
0 commit comments