Advertisement
ronaldkwandy

Untitled

Nov 6th, 2019
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. plugins {
  2. id 'org.springframework.boot' version '2.1.6.RELEASE'
  3. id 'java'
  4. id 'war'
  5. }
  6.  
  7. apply plugin: 'io.spring.dependency-management'
  8.  
  9. group = 'id.co.sofcograha'
  10. version = '0.0.1-SNAPSHOT'
  11. sourceCompatibility = '1.8'
  12.  
  13. repositories {
  14. maven {
  15. url "http://cancer.sofco:8083/nexus/content/groups/public"
  16. }
  17. mavenCentral()
  18. mavenLocal()
  19. }
  20.  
  21. dependencies {
  22. implementation 'org.springframework.boot:spring-boot-starter-web'
  23. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  24. implementation 'org.springframework.boot:spring-boot-starter-security'
  25. implementation 'org.springframework.boot:spring-boot-starter-artemis'
  26. implementation 'org.springframework.boot:spring-boot-starter-websocket'
  27. implementation 'org.springframework.boot:spring-boot-starter-actuator'
  28. implementation 'org.postgresql:postgresql'
  29. implementation 'org.apache.poi:poi:3.17'
  30. implementation 'org.apache.poi:poi-ooxml:3.17'
  31. implementation 'org.imgscalr:imgscalr-lib:4.2'
  32. implementation 'org.bouncycastle:bcprov-jdk15on:1.60'
  33. implementation 'org.webjars:sockjs-client:1.1.2'
  34. implementation 'org.webjars:stomp-websocket:2.3.3'
  35. implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
  36. implementation 'io.jsonwebtoken:jjwt:0.9.1'
  37. implementation 'net.sf.jasperreports:jasperreports:6.7.0'
  38. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  39. testImplementation 'org.mockito:mockito-core'
  40. testImplementation 'com.h2database:h2'
  41. providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
  42. }
  43.  
  44. war {
  45. baseName = 'gaji-id-api'
  46. }
  47.  
  48. jar {
  49. baseName = 'gaji-id-api'
  50. }
  51.  
  52. test {
  53. maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement