1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'java'
  2. apply plugin: 'maven'
  3. group = 'io.pivotal.workshop'
  4. version = '1.0-SNAPSHOT'
  5. description = """simple-spring-webapp Maven Webapp"""
  6. sourceCompatibility = 1.8
  7. targetCompatibility = 1.8
  8. repositories {
  9. maven { url "http://repo.maven.apache.org/maven2" }
  10. }
  11. dependencies {
  12. compile group: 'org.springframework', name: 'spring-webmvc', version:'5.0.1.RELEASE'
  13. compile group: 'org.springframework', name: 'spring-context', version:'5.0.1.RELEASE'
  14. compile group: 'org.springframework', name: 'spring-aop', version:'5.0.1.RELEASE'
  15. compile group: 'org.springframework', name: 'spring-web', version:'5.0.1.RELEASE'
  16. compile group: 'org.thymeleaf', name: 'thymeleaf', version:'3.0.9.RELEASE'
  17. compile group: 'org.thymeleaf', name: 'thymeleaf-spring5', version:'3.0.9.RELEASE'
  18. compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.25'
  19. compile group: 'ch.qos.logback', name: 'logback-classic', version:'1.2.3'
  20. providedCompile group: 'javax.servlet', name: 'servlet-api', version:'3.1.0'
  21. }