You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
648 B
21 lines
648 B
apply plugin: 'io.spring.convention.spring-sample-war' |
|
|
|
dependencies { |
|
compile project(':spring-security-samples-javaconfig-messages') |
|
compile slf4jDependencies |
|
compile 'javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api' |
|
compile 'javax.validation:validation-api' |
|
compile 'javax.xml.bind:jaxb-api' |
|
compile 'org.hibernate:hibernate-validator' |
|
compile 'org.springframework:spring-jdbc' |
|
compile 'org.springframework:spring-webmvc' |
|
|
|
providedCompile 'javax.servlet:javax.servlet-api' |
|
providedCompile 'javax.servlet.jsp:javax.servlet.jsp-api' |
|
|
|
runtime 'opensymphony:sitemesh' |
|
} |
|
|
|
gretty { |
|
logbackConfigFile = "src/main/resources/logback.xml" |
|
}
|
|
|