Advertisement
Guest User

Untitled

a guest
Nov 27th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.21 KB | None | 0 0
  1. buildscript {
  2.     ext {
  3.         springBootVersion = '2.1.0.RELEASE'
  4.     }
  5.     repositories {
  6.         mavenCentral()
  7.     }
  8.     dependencies {
  9.         classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  10.     }
  11. }
  12.  
  13. apply plugin: 'java'
  14. apply plugin: 'eclipse'
  15. apply plugin: 'org.springframework.boot'
  16. apply plugin: 'io.spring.dependency-management'
  17.  
  18. group = 'be.ugent.tiwi.groep8'
  19. version = '0.0.1'
  20. sourceCompatibility = 1.8
  21.  
  22. repositories {
  23.     mavenCentral()
  24.     flatDir {
  25.         dirs 'libs'
  26.     }
  27. }
  28.  
  29.  
  30. dependencies {
  31.     implementation('org.springframework.boot:spring-boot-starter')
  32.     testImplementation('org.springframework.boot:spring-boot-starter-test')
  33.  
  34.     implementation('org.apache.tomcat:tomcat:9.0.13')
  35.     implementation('org.mariadb.jdbc:mariadb-java-client:2.3.0')
  36.     implementation('org.springframework.boot:spring-boot-starter-data-jpa:2.1.0.RELEASE')
  37.     implementation('org.springframework.boot:spring-boot-starter-web:2.1.0.RELEASE')
  38.     implementation('org.springframework:spring-websocket:5.1.2.RELEASE')
  39.     implementation('org.springframework.boot:spring-boot-starter-thymeleaf:2.1.0.RELEASE')
  40.  
  41.     implementation(name: 'PrisonerDilemma')
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement