Advertisement
Guest User

core

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