mirror of
				https://github.com/spring-projects/spring-security.git
				synced 2025-10-31 06:38:42 +00:00 
			
		
		
		
	This commit removes unnecessary main-branch merges starting from 8750608b5bca45525c99d0a41a20ed02de93d8c7 and adds the following needed commit(s) that were made afterward: - 5dce82c48bc0b174838501c5a111b2de70822914
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'io.spring.convention.spring-module'
 | |
| 
 | |
| dependencies {
 | |
| 	management platform(project(":spring-security-dependencies"))
 | |
| 	api project(':spring-security-core')
 | |
| 	api project(':spring-security-web')
 | |
| 	api 'org.springframework:spring-core'
 | |
| 	api 'org.springframework:spring-test'
 | |
| 
 | |
| 	optional project(':spring-security-config')
 | |
| 	optional project(':spring-security-oauth2-client')
 | |
| 	optional project(':spring-security-oauth2-jose')
 | |
| 	optional project(':spring-security-oauth2-resource-server')
 | |
| 	optional 'io.projectreactor:reactor-core'
 | |
| 	optional 'org.springframework:spring-webmvc'
 | |
| 	optional 'org.springframework:spring-webflux'
 | |
| 
 | |
| 	provided 'jakarta.servlet:jakarta.servlet-api'
 | |
| 
 | |
| 	testImplementation project(path : ':spring-security-config', configuration : 'tests')
 | |
| 	testImplementation 'com.fasterxml.jackson.core:jackson-databind'
 | |
| 	testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
 | |
| 	testImplementation 'io.projectreactor:reactor-test'
 | |
| 	testImplementation 'jakarta.xml.bind:jakarta.xml.bind-api'
 | |
| 	testImplementation "org.assertj:assertj-core"
 | |
| 	testImplementation "org.junit.jupiter:junit-jupiter-api"
 | |
| 	testImplementation "org.junit.jupiter:junit-jupiter-params"
 | |
| 	testImplementation "org.junit.jupiter:junit-jupiter-engine"
 | |
| 	testImplementation "org.mockito:mockito-core"
 | |
| 	testImplementation "org.mockito:mockito-junit-jupiter"
 | |
| 	testImplementation "org.springframework:spring-test"
 | |
| 	testImplementation 'org.skyscreamer:jsonassert'
 | |
| 	testImplementation 'org.springframework:spring-webmvc'
 | |
| 	testImplementation 'org.springframework:spring-tx'
 | |
| }
 |