File tree Expand file tree Collapse file tree 9 files changed +24
-22
lines changed
src/main/java/com/microsoft/graph/info Expand file tree Collapse file tree 9 files changed +24
-22
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
1212### Changed
1313
14+ ## [ 6.1.0] - 2024-02-07
15+
16+ - Major Version 6.1.0 now Generally Available.
17+ - See [ Upgrade Guide] ( https://github.com/microsoftgraph/msgraph-sdk-java/blob/dev/docs/upgrade-to-v6.md ) for more information.
18+
1419## [ 5.67.0] - 2023-08-10
1520
1621### Added
Original file line number Diff line number Diff line change 11# Microsoft Graph SDK for Java
2- ## Version 6.0.2 now in Release Candidate stage !
2+ ## Version 6.1.0 now Generally Available (GA) !
33
44[ ![ Download] ( https://img.shields.io/maven-central/v/com.microsoft.graph/microsoft-graph.svg )] ( https://search.maven.org/artifact/com.microsoft.graph/microsoft-graph )
55
@@ -16,12 +16,11 @@ Add the repository and a compile dependency for `microsoft-graph` to your projec
1616``` groovy
1717repositories {
1818 mavenCentral()
19- maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
2019}
2120
2221dependencies {
2322 // Include the sdk as a dependency
24- implementation 'com.microsoft.graph:microsoft-graph:6.0.2-SNAPSHOT '
23+ implementation 'com.microsoft.graph:microsoft-graph:6.1.0 '
2524 // Uncomment the line below if you are building an android application
2625 //implementation 'com.google.guava:guava:30.1.1-android'
2726 // This dependency is only needed if you are using a TokenCredential object for authentication
@@ -38,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3837 <!-- Include the sdk as a dependency -->
3938 <groupId >com.microsoft.graph</groupId >
4039 <artifactId >microsoft-graph</artifactId >
41- <version >6.0.2-SNAPSHOT </version >
40+ <version >6.1.0 </version >
4241</dependency >
4342<dependency >
4443 <!-- This dependency is only needed if you are using a TokenCredential object for authentication -->
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ buildscript {
1616repositories {
1717 google()
1818 gradlePluginPortal()
19- maven { url ' https://oss.sonatype.org/content/repositories/snapshots' }
2019}
2120
2221apply plugin : " com.android.library"
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ org.gradle.caching=true
2626mavenGroupId = com.microsoft.graph
2727mavenArtifactId = microsoft-graph
2828mavenMajorVersion = 6
29- mavenMinorVersion = 0
29+ mavenMinorVersion = 1
3030mavenPatchVersion = 0
3131mavenArtifactSuffix =
3232
@@ -40,4 +40,4 @@ Password="PASSWORD"
4040
4141# enable mavenCentralPublishingEnabled to publish to maven central
4242mavenCentralSnapshotArtifactSuffix = -SNAPSHOT
43- mavenCentralPublishingEnabled =false
43+ mavenCentralPublishingEnabled =true
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ sourceSets {
3636repositories {
3737 // You can declare any Maven/Ivy/file repository here.
3838 mavenCentral()
39- maven { url ' https://oss.sonatype.org/content/repositories/snapshots' }
4039}
4140
4241apply from : " gradle/dependencies.gradle"
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ org.gradle.caching=true
2626mavenGroupId = com.microsoft.graph
2727mavenArtifactId = microsoft-graph
2828mavenMajorVersion = 6
29- mavenMinorVersion = 0
30- mavenPatchVersion = 2
29+ mavenMinorVersion = 1
30+ mavenPatchVersion = 0
3131mavenArtifactSuffix =
3232
3333# These values are used to run functional tests
@@ -40,7 +40,7 @@ Password="PASSWORD"
4040
4141# enable mavenCentralPublishingEnabled to publish to maven central
4242mavenCentralSnapshotArtifactSuffix = -SNAPSHOT
43- mavenCentralPublishingEnabled =false
43+ mavenCentralPublishingEnabled =true
4444
4545
4646
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ dependencies {
1010 implementation ' jakarta.annotation:jakarta.annotation-api:2.1.1'
1111
1212 // Core Http library
13- api ' com.microsoft.graph:microsoft-graph-core:3.0.12-SNAPSHOT '
14- implementation ' com.microsoft.kiota:microsoft-kiota-authentication-azure:0.12.2 '
15- implementation ' com.microsoft.kiota:microsoft-kiota-http-okHttp:0.12.2 '
16- implementation ' com.microsoft.kiota:microsoft-kiota-serialization-json:0.12.2 '
17- implementation ' com.microsoft.kiota:microsoft-kiota-serialization-text:0.12.2 '
18- implementation ' com.microsoft.kiota:microsoft-kiota-serialization-form:0.12.2 '
19- implementation ' com.microsoft.kiota:microsoft-kiota-serialization-multipart:0.12.2 '
13+ api ' com.microsoft.graph:microsoft-graph-core:3.1.0 '
14+ implementation ' com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.0 '
15+ implementation ' com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.0 '
16+ implementation ' com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.0 '
17+ implementation ' com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.0 '
18+ implementation ' com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.0 '
19+ implementation ' com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.0 '
2020}
Original file line number Diff line number Diff line change 44 as the dependency graph is not compatible with gradle https://docs.github.com/en/free-pro-team@latest/github/visualizing-repository-data-with-graphs/about-the-dependency-graph#supported-package-ecosystems
55 build.gradle is the source of truth
66 -->
7- <modelVersion >5 .0.0</modelVersion >
7+ <modelVersion >6 .0.0</modelVersion >
88
99 <groupId >com.microsoft.graph</groupId >
1010 <artifactId >microsoft-graph</artifactId >
11- <version >3.3 .0</version >
11+ <version >6.1 .0</version >
1212 <packaging >pom</packaging >
1313
1414 <properties >
3535 <dependency >
3636 <groupId >com.microsoft.graph</groupId >
3737 <artifactId >microsoft-graph-core</artifactId >
38- <version >2.0.21 </version >
38+ <version >3.1.0 </version >
3939 </dependency >
4040 <dependency >
4141 <groupId >org.junit.jupiter</groupId >
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ public final class Constants {
55 private Constants () {
66 }
77 /** The SDK version */
8- public static final String VERSION_NAME = "6.0.2-SNAPSHOT " ;
8+ public static final String VERSION_NAME = "6.1.0 " ;
99}
You can’t perform that action at this time.
0 commit comments