Skip to content

Commit 25d52ad

Browse files
committed
- fixes dependencies that are needed publicly as exposed on public methods
1 parent 4437a80 commit 25d52ad

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

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 = 14
28+
mavenPatchVersion = 15
2929
mavenArtifactSuffix =
3030

3131
#These values are used to run functional tests

gradle/dependencies.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ dependencies {
1212
implementation 'com.google.code.gson:gson:2.10'
1313
api 'com.azure:azure-core:1.34.0'
1414

15-
compileOnly 'net.jcip:jcip-annotations:1.0'
16-
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.7.3'
17-
testCompileOnly 'net.jcip:jcip-annotations:1.0'
18-
testCompileOnly 'com.github.spotbugs:spotbugs-annotations:4.7.2'
15+
api 'net.jcip:jcip-annotations:1.0'
16+
api 'com.github.spotbugs:spotbugs-annotations:4.7.3'
1917
}

src/main/java/com/microsoft/graph/httpcore/TelemetryHandler.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import java.io.IOException;
44
import java.lang.reflect.Field;
5-
import java.util.Objects;
65

76
import javax.annotation.Nonnull;
87

@@ -25,9 +24,9 @@ public class TelemetryHandler implements Interceptor{
2524
/**
2625
* Current SDK version
2726
*/
28-
public static final String VERSION = "v2.0.14";
27+
public static final String VERSION = "v2.0.15";
2928
/**
30-
* Verion prefix
29+
* Version prefix
3130
*/
3231
public static final String GRAPH_VERSION_PREFIX = "graph-java-core";
3332
/**

0 commit comments

Comments
 (0)