refactor: change vul modules structure

This commit is contained in:
ReaJason
2024-12-22 10:42:48 +08:00
parent 1272ee46b4
commit c859655e3a
32 changed files with 9 additions and 12 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
id 'war'
}
group = 'com.reajason.javaweb.vul'
version = ''
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
}
dependencies {
implementation 'commons-fileupload:commons-fileupload:1.3.3'
implementation 'commons-beanutils:commons-beanutils:1.9.3'
providedCompile "javax.servlet:servlet-api:2.5"
}