Guest User

core

a guest
Apr 22nd, 2018
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.08 KB | None | 0 0
  1. group = 'com.core'
  2.  
  3.  
  4. dependencies {
  5.     /*******************************
  6.      * Compile Dependencies
  7.      *******************************/
  8.  
  9.     compile project(":common")
  10.  
  11.     compile("org.springframework.boot:spring-boot-starter-data-jpa") {
  12.         exclude group: "org.apache.tomcat", module: "tomcat-jdbc"
  13.         exclude group: "org.hibernate", module: "hibernate-entitymanager"
  14.     }
  15.     compile("org.springframework.boot:spring-boot-starter-security")
  16.     compile("org.springframework.boot:spring-boot-starter-mail")
  17.     compile("org.springframework.boot:spring-boot-configuration-processor")
  18.     compile("org.eclipse.persistence:org.eclipse.persistence.jpa")
  19.     compile("org.eclipse.persistence:org.eclipse.persistence.jpa.modelgen.processor")
  20.     compile("com.google.api-client:google-api-client")
  21.     compile("com.google.oauth-client:google-oauth-client-jetty")
  22.     compile("com.google.apis:google-api-services-drive")
  23.  
  24.     /*******************************
  25.      * Runtime Dependencies
  26.      *******************************/
  27.  
  28.     runtime("org.postgresql:postgresql")
  29.     runtime("mysql:mysql-connector-java")
  30.     runtime("com.h2database:h2")
  31. }
Add Comment
Please, Sign In to add comment