diff --git a/chat/build.gradle.kts b/chat/build.gradle.kts index 3553584..3980520 100644 --- a/chat/build.gradle.kts +++ b/chat/build.gradle.kts @@ -7,12 +7,6 @@ plugins { group = "com.plcoding" version = "unspecified" -repositories { - mavenCentral() - maven { url = uri("https://repo.spring.io/milestone") } - maven { url = uri("https://repo.spring.io/snapshot") } -} - dependencies { implementation(projects.common) @@ -24,8 +18,4 @@ dependencies { runtimeOnly(libs.postgresql) testImplementation(kotlin("test")) -} - -tasks.test { - useJUnitPlatform() } \ No newline at end of file diff --git a/common/build.gradle.kts b/common/build.gradle.kts index c927e77..32d936c 100644 --- a/common/build.gradle.kts +++ b/common/build.gradle.kts @@ -6,12 +6,6 @@ plugins { group = "com.plcoding" version = "unspecified" -repositories { - mavenCentral() - maven { url = uri("https://repo.spring.io/milestone") } - maven { url = uri("https://repo.spring.io/snapshot") } -} - dependencies { api(libs.kotlin.reflect) api(libs.jackson.module.kotlin) @@ -24,8 +18,4 @@ dependencies { runtimeOnly(libs.jwt.jackson) testImplementation(kotlin("test")) -} - -tasks.test { - useJUnitPlatform() } \ No newline at end of file diff --git a/notification/build.gradle.kts b/notification/build.gradle.kts index b6c4fb2..5d8d78c 100644 --- a/notification/build.gradle.kts +++ b/notification/build.gradle.kts @@ -7,12 +7,6 @@ plugins { group = "com.plcoding" version = "unspecified" -repositories { - mavenCentral() - maven { url = uri("https://repo.spring.io/milestone") } - maven { url = uri("https://repo.spring.io/snapshot") } -} - dependencies { implementation(projects.common) @@ -28,8 +22,4 @@ dependencies { runtimeOnly(libs.postgresql) testImplementation(kotlin("test")) -} - -tasks.test { - useJUnitPlatform() } \ No newline at end of file diff --git a/user/build.gradle.kts b/user/build.gradle.kts index 425f39b..f8b9542 100644 --- a/user/build.gradle.kts +++ b/user/build.gradle.kts @@ -7,12 +7,6 @@ plugins { group = "com.plcoding" version = "unspecified" -repositories { - mavenCentral() - maven { url = uri("https://repo.spring.io/milestone") } - maven { url = uri("https://repo.spring.io/snapshot") } -} - dependencies { implementation(projects.common) @@ -28,8 +22,4 @@ dependencies { runtimeOnly(libs.jwt.jackson) testImplementation(kotlin("test")) -} - -tasks.test { - useJUnitPlatform() } \ No newline at end of file