Advertisement
Bleser

build.gradle

Nov 6th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.14 KB | None | 0 0
  1. group 'dev.bleser'
  2. version '1.0-SNAPSHOT'
  3.  
  4. apply plugin: 'java'
  5. apply plugin: 'war'
  6.  
  7. sourceCompatibility = 1.8
  8.  
  9. repositories {
  10.     mavenCentral()
  11. }
  12.  
  13. dependencies {
  14.  
  15.     /* Spring dependency */
  16.     compile 'org.springframework.data:spring-data-jpa:2.0.1.RELEASE'
  17.     compile 'org.springframework.security:spring-security-web:4.2.3.RELEASE'
  18.     compile 'org.springframework.security:spring-security-config:4.2.3.RELEASE'
  19.     compile 'org.springframework:spring-websocket:5.0.1.RELEASE'
  20.     compile 'org.springframework:spring-webmvc:5.0.1.RELEASE'
  21.  
  22.     /* Database dependency */
  23.     compile 'org.postgresql:postgresql:42.1.4'
  24.     compile 'org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final'
  25.     compile 'org.hibernate:hibernate-entitymanager:5.2.9.Final'
  26.     compile 'org.apache.tomcat:tomcat-dbcp:9.0.1'
  27.  
  28.     /* JSON */
  29.     compile 'com.fasterxml.jackson.core:jackson-core:2.9.2'
  30.     compile 'com.fasterxml.jackson.core:jackson-databind:2.9.2'
  31.  
  32.     /* Servlet API */
  33.     providedCompile 'javax.servlet:javax.servlet-api:4.0.0'
  34.    
  35.     /* Test dependency */
  36.     testCompile group: 'junit', name: 'junit', version: '4.12'
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement