Browse Source

REPORT-91724 对用户输入的参数进行统一校验

feature/x
Yuan.Wang-王垣 2 years ago
parent
commit
65edeb4daa
  1. 1
      build.third_step3-jdk11.gradle
  2. 3
      build.third_step3.gradle

1
build.third_step3-jdk11.gradle

@ -75,7 +75,6 @@ String essentialVersion = findProperty("essentialVersion")
//
dependencies{
compileOnly "com.fr.essential:fine-essential:${essentialVersion}"
//compile fileTree(dir:"${srcDir}/fine-jboss-logging/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile fileTree(dir:System.getenv("JAVA_HOME"),include:"lib/tools.jar")
compile group: "com.fr.third.server", name: "servlet-api", version: "3.0"

3
build.third_step3.gradle

@ -58,7 +58,6 @@ String essentialVersion = findProperty("essentialVersion")
//
dependencies{
compileOnly "com.fr.essential:fine-essential:${essentialVersion}"
//compile fileTree(dir:"${srcDir}/fine-jboss-logging/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile fileTree(dir:System.getenv("JAVA_HOME"),include:"lib/tools.jar")
compile group: "javax.servlet", name: "javax.servlet-api", version: "3.0.1"
@ -84,8 +83,6 @@ task copyFiles(type:Copy,dependsOn:'compileJava'){
with dataContent.call("${srcDir}/fine-itext/src/main/resources")
with dataContent.call("${srcDir}/fine-jedis/src/main/java")
with dataContent.call("${srcDir}/fine-jedis/src/main/resources")
//with dataContent.call("${srcDir}/fine-jboss-logging/src/main/java")
//with dataContent.call("${srcDir}/fine-jboss-logging/src/main/resources")
into "${classesDir}"
}
}

Loading…
Cancel
Save