| 123456789101112131415161718192021222324252627282930 | 
							- plugins {
 
- 	id 'java'
 
- 	alias(libs.plugins.org.springframework.boot)
 
- 	alias(libs.plugins.io.spring.dependency.management)
 
- }
 
- group = 'com.example'
 
- version = '0.0.1-SNAPSHOT'
 
- java {
 
- 	sourceCompatibility = '17'
 
- }
 
- repositories {
 
- 	mavenCentral()
 
- 	maven { url "https://repo.spring.io/milestone" }
 
- 	maven { url "https://repo.spring.io/snapshot" }
 
- }
 
- dependencies {
 
- 	implementation 'org.springframework.boot:spring-boot-starter-security'
 
- 	implementation 'org.springframework.boot:spring-boot-starter-webflux'
 
- 	testImplementation 'org.springframework.boot:spring-boot-starter-test'
 
- 	testImplementation 'io.projectreactor:reactor-test'
 
- 	testImplementation 'org.springframework.security:spring-security-test'
 
- }
 
- tasks.named('test') {
 
- 	useJUnitPlatform()
 
- }
 
 
  |