Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.3.RELEASE")
  7. }
  8. }
  9.  
  10. apply plugin: 'java'
  11. apply plugin: 'eclipse'
  12. apply plugin: 'idea'
  13. apply plugin: 'org.springframework.boot'
  14. apply plugin: 'io.spring.dependency-management'
  15.  
  16. bootJar {
  17. baseName = 'e-common'
  18. version = '0.1.0'
  19. enabled = false
  20. }
  21.  
  22. jar {
  23. enabled = true
  24. }
  25.  
  26. repositories {
  27. mavenCentral()
  28. }
  29.  
  30. sourceCompatibility = 1.8
  31. targetCompatibility = 1.8
  32.  
  33. dependencies {
  34. compile("org.springframework.boot:spring-boot-starter-web")
  35. compile('org.springframework.boot:spring-boot-starter-data-jpa')
  36. compile('org.hibernate:hibernate-core:5.3.7.Final')
  37. compile("org.springframework.boot:spring-boot-starter-security")
  38. compile("org.springframework.ldap:spring-ldap-core")
  39. compile("org.springframework.security:spring-security-ldap")
  40. testCompile("junit:junit")
  41.  
  42. //users package dependencies
  43.  
  44. implementation 'org.springframework.boot:spring-boot-starter-jdbc'
  45. runtimeOnly 'org.postgresql:postgresql'
  46. compileOnly 'org.projectlombok:lombok:1.18.6'
  47. annotationProcessor 'org.projectlombok:lombok:1.18.6'
  48. compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.2.Final'
  49. compile group: 'com.zaxxer', name: 'HikariCP', version: '3.3.1'
  50. compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
  51. compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
  52. compile("org.springframework.ldap:spring-ldap-core")
  53. compile("org.springframework.security:spring-security-ldap")
  54.  
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement