Files
MemShellParty/vul/vul-springboot2-undertow/build.gradle
T
2025-05-28 01:22:54 +08:00

29 lines
689 B
Groovy

plugins {
id 'org.springframework.boot' version '2.7.6'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'java'
id 'war'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude module: "spring-boot-starter-tomcat"
}
implementation 'commons-io:commons-io:2.19.0'
implementation 'net.bytebuddy:byte-buddy:1.10.10'
implementation 'org.springframework.boot:spring-boot-starter-undertow'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}