-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·33 lines (26 loc) · 1.1 KB
/
Copy pathbuild.gradle
File metadata and controls
executable file
·33 lines (26 loc) · 1.1 KB
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
plugins {
id 'java'
id 'com.gradle.build-scan' version '2.0.2'
id 'org.springframework.boot' version '2.0.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.7.RELEASE'
}
group = 'org.cargo'
version = '1.0-SNAPSHOT'
sourceCompatibility = 12
targetCompatibility = 12
repositories {
jcenter()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.security:spring-security-core')
implementation('org.springframework:spring-context-support')
implementation group: 'com.smartcar.sdk', name: 'java-sdk', version:'2.1.0'
implementation group: 'javax.mail', name: 'mail', version:'1.5.0-b01'
runtime group: 'mysql', name: 'mysql-connector-java', version:'8.0.16'
compileOnly group: 'org.projectlombok', name: 'lombok', version:'1.18.8'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version:'1.18.8'
implementation 'javax.xml.bind:jaxb-api:2.3.0'
implementation 'org.javassist:javassist:3.23.1-GA'
}