Skip to content

Commit 343b6ed

Browse files
changed gradle
1 parent 80671c6 commit 343b6ed

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

build.gradle renamed to build.gradle.kts

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies {
3232
implementation("org.springframework.boot:spring-boot-starter-validation")
3333
implementation("org.springframework.boot:spring-boot-starter-webflux")
3434

35-
implementation 'com.graphql-java:graphql-java:20.0'
35+
implementation("com.graphql-java:graphql-java:20.0")
3636

3737
// Telegram
3838
implementation("org.telegram:telegrambots-client:8.3.0")
@@ -46,11 +46,15 @@ dependencies {
4646
testImplementation("org.junit.jupiter:junit-jupiter:5.11.1")
4747
}
4848

49-
tasks.named("test") {
49+
tasks.test {
5050
useJUnitPlatform()
5151
testLogging {
5252
exceptionFormat = TestExceptionFormat.FULL
53-
events = [TestLogEvent.FAILED, TestLogEvent.PASSED, TestLogEvent.SKIPPED]
53+
events = setOf(
54+
TestLogEvent.FAILED,
55+
TestLogEvent.PASSED,
56+
TestLogEvent.SKIPPED
57+
)
5458
showStandardStreams = true
5559
}
5660
}
@@ -63,8 +67,8 @@ tasks.jacocoTestReport {
6367

6468
sonar {
6569
properties {
66-
property "sonar.projectKey", "sergeycherkasovv_github-profile-analyzer"
67-
property "sonar.organization", "sergeycherkasovv"
68-
property "sonar.host.url", "https://sonarcloud.io"
70+
property("sonar.projectKey", "sergeycherkasovv_github-profile-analyzer")
71+
property("sonar.organization", "sergeycherkasovv")
72+
property("sonar.host.url", "https://sonarcloud.io")
6973
}
7074
}

settings.gradle

Lines changed: 0 additions & 1 deletion
This file was deleted.

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = "github-profile-analyzer"

0 commit comments

Comments
 (0)