-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (37 loc) · 1.48 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
buildscript {
repositories {
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.7.RELEASE")
}
}
apply plugin: 'spring-boot'
apply plugin: 'java'
apply plugin: 'eclipse'
jar {
manifest {
attributes 'Main-Class': 'com.intexsoft.call.CallTaskApplication'
}
}
group = 'com.tasks.call'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.hibernate', name: 'hibernate-core', version:'5.2.12.Final'
compile group: 'org.springframework', name: 'spring-core', version: '5.0.1.RELEASE'
compile group: 'org.springframework', name: 'spring-context', version: '5.0.1.RELEASE'
compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.1.RELEASE'
compile group: 'commons-dbcp', name: 'commons-dbcp', version: '1.4'
compile group: 'org.postgresql', name: 'postgresql', version: '9.4-1201-jdbc41'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.2'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.2.1'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.0.1'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
compile group: 'ch.qos.logback', name: 'logback-core', version: '1.2.3'
}