fix: rename struct2 -> struts2

This commit is contained in:
ReaJason
2026-05-24 21:28:01 +08:00
parent dbd9687003
commit 7866eb63b2
41 changed files with 64 additions and 537 deletions
+26
View File
@@ -0,0 +1,26 @@
plugins {
id("war")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
}
dependencies {
implementation("org.apache.struts:struts2-core:2.5.30")
implementation("commons-fileupload:commons-fileupload:1.3.3")
implementation("commons-fileupload:commons-fileupload:1.3.3")
implementation("commons-beanutils:commons-beanutils:1.9.2")
providedCompile("javax.servlet:servlet-api:2.5")
}
tasks.test {
useJUnitPlatform()
}