mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
25 lines
689 B
Groovy
25 lines
689 B
Groovy
group = 'com.reajason.javaweb'
|
|
version = ''
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":memshell")
|
|
implementation 'net.bytebuddy:byte-buddy'
|
|
|
|
implementation 'org.springframework:spring-webmvc'
|
|
implementation 'org.springframework:spring-webflux'
|
|
implementation 'io.projectreactor.netty:reactor-netty-core'
|
|
|
|
implementation 'javax.servlet:javax.servlet-api'
|
|
implementation 'javax.websocket:javax.websocket-api'
|
|
testImplementation platform('org.junit:junit-bom')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |