plugins { `java-library` } group = "space.anyi" version = "1.0-SNAPSHOT" description = "ms-user-web" repositories { mavenCentral() } dependencies { // implementation(project(":ms-user")) implementation(project(":ms-user-api")) implementation(platform("org.springframework.boot:spring-boot-dependencies:2.7.0")) implementation("org.springframework.boot:spring-boot-starter-web") testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine") } tasks.getByName("test") { useJUnitPlatform() }