@@ -6,22 +6,37 @@ repositories {
66}
77
88dependencies {
9- compile (
10- ' com.amazonaws.serverless:aws-serverless-java-container-struts2:[1.0,)' ,
11- ' org.apache.struts:struts2-convention-plugin:2.5.22' ,
12- ' org.apache.struts:struts2-rest-plugin:2.5.22' ,
13- ' org.apache.struts:struts2-bean-validation-plugin:2.5.22' ,
14- ' org.apache.struts:struts2-junit-plugin:2.5.22' ,
15- ' com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.0.0' ,
16- ' org.hibernate:hibernate-validator:4.3.2.Final' ,
17- ' com.fasterxml.jackson.core:jackson-databind:2.10.3' ,
18- ' org.apache.logging.log4j:log4j-core:2.8.2' ,
19- ' org.apache.logging.log4j:log4j-api:2.8.2' ,
20- ' org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' ,
21- ' com.amazonaws:aws-lambda-java-log4j2:1.1.0' ,
22- )
239
24- testCompile(" junit:junit:4.12" )
10+ compile (' com.amazonaws.serverless:aws-serverless-java-container-struts2:[1.0,)' ) {
11+ exclude group : ' org.apache.struts' , module : ' struts2-core'
12+ exclude group : ' org.apache.logging.log4j' , module : ' log4j-api'
13+ }
14+ compile (' org.apache.struts:struts2-convention-plugin:2.5.22' ) {
15+ exclude group : ' org.apache.struts' , module : ' struts2-core'
16+ }
17+ compile (' org.apache.struts:struts2-rest-plugin:2.5.22' ) {
18+ exclude group : ' org.apache.struts' , module : ' struts2-core'
19+ }
20+ compile (' org.apache.struts:struts2-bean-validation-plugin:2.5.22' ) {
21+ exclude group : ' org.apache.struts' , module : ' struts2-core'
22+ }
23+ compile (' com.jgeppert.struts2:struts2-aws-lambda-support-plugin:1.0.0' ) {
24+ exclude group : ' org.apache.struts' , module : ' struts2-core'
25+ }
26+ compile (' org.apache.struts:struts2-core:2.5.22' ) {
27+ exclude group : ' org.apache.logging.log4j' , module : ' log4j-api'
28+ }
29+ compile (' org.hibernate:hibernate-validator:4.3.2.Final' )
30+ compile (' com.fasterxml.jackson.core:jackson-databind:2.10.3' )
31+ compile (' org.apache.logging.log4j:log4j-core:2.8.2' )
32+ compile (' org.apache.logging.log4j:log4j-api:2.8.2' )
33+ compile (' org.apache.logging.log4j:log4j-slf4j-impl:2.8.2' )
34+ compile (' com.amazonaws:aws-lambda-java-log4j2:1.1.0' )
35+
36+ testCompile(' junit:junit:4.12' )
37+ testCompile(' org.apache.struts:struts2-junit-plugin:2.5.22' ) {
38+ exclude group : ' org.apache.struts' , module : ' struts2-core'
39+ }
2540}
2641
2742task buildZip (type : Zip ) {
0 commit comments