Skip to content

Commit 8f9d28f

Browse files
committed
Fix all gradle warnings
1 parent fc65faf commit 8f9d28f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ plugins {
77
id 'com.diffplug.spotless' version '6.25.0'
88
}
99

10-
group 'com.ringcentral'
11-
version '3.3.2'
10+
group = 'com.ringcentral'
11+
version = '3.3.2'
1212

1313
repositories {
1414
mavenCentral()
1515
}
1616

1717
dependencies {
18-
api group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
19-
api group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.11.0'
20-
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
18+
api 'com.google.code.gson:gson:2.10.1'
19+
api 'com.squareup.okhttp3:okhttp:4.11.0'
20+
testImplementation 'junit:junit:4.13.2'
2121
}
2222

2323
java {
24-
sourceCompatibility = JavaVersion.VERSION_1_8
25-
targetCompatibility = JavaVersion.VERSION_1_8
24+
sourceCompatibility = JavaVersion.VERSION_11
25+
targetCompatibility = JavaVersion.VERSION_11
2626
withJavadocJar()
2727
withSourcesJar()
2828
}

0 commit comments

Comments
 (0)