Skip to content

Commit 7264c23

Browse files
committed
- removes snapshot reference for core following release
1 parent 852c4d6 commit 7264c23

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

android/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ buildscript {
1717
repositories {
1818
google()
1919
gradlePluginPortal()
20-
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } //TODO remove when releasing
2120
}
2221

2322
apply plugin: "com.android.library"

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ sourceSets {
3737
repositories {
3838
// You can declare any Maven/Ivy/file repository here.
3939
mavenCentral()
40-
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } //TODO remove when releasing
4140
}
4241

4342
apply from: "gradle/dependencies.gradle"

gradle/dependencies.gradle

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

1313
// Core Http library
14-
api 'com.microsoft.graph:microsoft-graph-core:2.0.0-SNAPSHOT' //TODO update version when releasing
14+
api 'com.microsoft.graph:microsoft-graph-core:2.0.0'
1515
}

typesummary/app/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ plugins {
1212
}
1313

1414
repositories {
15-
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } //TODO remove when releasing
1615
mavenCentral()
1716
}
1817

@@ -29,7 +28,7 @@ dependencies {
2928
implementation 'com.google.guava:guava:30.1-jre'
3029
implementation 'com.google.code.gson:gson:2.8.6'
3130

32-
implementation 'com.microsoft.graph:microsoft-graph-core:2.0.0-SNAPSHOT' //TODO update this when releasing
31+
implementation 'com.microsoft.graph:microsoft-graph-core:2.0.0'
3332
}
3433

3534
application {

0 commit comments

Comments
 (0)