-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
60 lines (48 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
plugins {
id 'org.springframework.boot' version '2.5.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.sajari'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = "14"
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/sajari/sdk-java")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-websocket:2.5.3'
implementation 'com.sajari:sdk-java-client:4.0.0'
implementation 'com.rometools:rome:1.16.0'
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'com.google.guava:guava:30.1.1-jre'
implementation 'commons-io:commons-io:2.11.0'
implementation 'commons-lang:commons-lang:2.6'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
implementation 'com.squareup.okhttp3:logging-interceptor:4.9.1'
implementation 'org.jeasy:easy-batch-core:7.0.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.4'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:2.5.3'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.3'
testImplementation 'junit:junit:4.13.1'
}
test {
useJUnitPlatform()
}
jar {
enabled = false
}
targetCompatibility = JavaVersion.VERSION_14