Skip to content

Commit eedcec9

Browse files
committed
Move Core Access API
Issue gh-17847
1 parent 3a1692f commit eedcec9

File tree

157 files changed

+805
-38
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+805
-38
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
apply plugin: 'io.spring.convention.spring-module'
2+
3+
dependencies {
4+
management platform(project(":spring-security-dependencies"))
5+
api project(':spring-security-crypto')
6+
api project(':spring-security-core')
7+
api 'org.springframework:spring-aop'
8+
api 'org.springframework:spring-beans'
9+
api 'org.springframework:spring-context'
10+
api 'org.springframework:spring-core'
11+
api 'org.springframework:spring-expression'
12+
api 'io.micrometer:micrometer-observation'
13+
14+
optional 'com.fasterxml.jackson.core:jackson-databind'
15+
optional 'io.micrometer:context-propagation'
16+
optional 'io.projectreactor:reactor-core'
17+
optional 'jakarta.annotation:jakarta.annotation-api'
18+
optional 'org.aspectj:aspectjrt'
19+
optional 'org.springframework:spring-jdbc'
20+
optional 'org.springframework:spring-tx'
21+
optional 'org.jetbrains.kotlinx:kotlinx-coroutines-reactor'
22+
23+
testImplementation 'commons-collections:commons-collections'
24+
testImplementation 'io.projectreactor:reactor-test'
25+
testImplementation "org.assertj:assertj-core"
26+
testImplementation "org.junit.jupiter:junit-jupiter-api"
27+
testImplementation "org.junit.jupiter:junit-jupiter-params"
28+
testImplementation "org.junit.jupiter:junit-jupiter-engine"
29+
testImplementation "org.mockito:mockito-core"
30+
testImplementation "org.mockito:mockito-junit-jupiter"
31+
testImplementation "org.springframework:spring-core-test"
32+
testImplementation "org.springframework:spring-test"
33+
testImplementation 'org.skyscreamer:jsonassert'
34+
testImplementation 'org.springframework:spring-test'
35+
testImplementation 'org.jetbrains.kotlin:kotlin-reflect'
36+
testImplementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
37+
testImplementation 'io.mockk:mockk'
38+
39+
testRuntimeOnly 'org.hsqldb:hsqldb'
40+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
41+
}
42+

0 commit comments

Comments
 (0)