mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
25 lines
626 B
Groovy
25 lines
626 B
Groovy
plugins {
|
|
id 'war'
|
|
}
|
|
|
|
group = 'com.reajason.javaweb'
|
|
version = ''
|
|
sourceCompatibility = '1.8'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework:spring-webmvc:4.3.30.RELEASE'
|
|
implementation 'org.springframework:spring-webflux:5.3.24'
|
|
implementation 'org.springframework:spring-web:4.3.30.RELEASE'
|
|
providedCompile 'javax.servlet:javax.servlet-api:3.0.1'
|
|
providedCompile 'javax.websocket:javax.websocket-api:1.1'
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |