Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. buildscript {
  2. ext {
  3. springBootVersion = '1.5.6.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.  
  17. version = '0.0.1-SNAPSHOT'
  18. sourceCompatibility = 1.8
  19.  
  20. repositories {
  21. mavenCentral()
  22. }
  23.  
  24.  
  25. dependencies {
  26. compile('org.springframework.boot:spring-boot-starter-data-jpa')
  27. compile('org.springframework.boot:spring-boot-starter-jdbc')
  28. compile('org.springframework.boot:spring-boot-starter-security')
  29. compile 'org.apache.commons:commons-dbcp2:2.1.1'
  30. runtime('mysql:mysql-connector-java')
  31. testCompile('org.springframework.boot:spring-boot-starter-test')
  32. testCompile('org.springframework.security:spring-security-test')
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement