22 lines
449 B
Groovy
22 lines
449 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'org.springframework'
|
|
version '5.2.21.BUILD-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":spring-beans"))
|
|
compile(project(":spring-context"))
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |