-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
85 lines (60 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.5'
id 'io.spring.dependency-management' version '1.1.0'
}
var projectName = rootProject.name
group = 'cn.cutemc'
version = '0.1.2'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
maven { url 'file://mnt/c/Users/11490/.m2/repository' }
maven { url 'https://maven.aliyun.com/repository/central' }
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin'}
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-aop'
compileOnly 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//MySQL
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'mysql:mysql-connector-java:8.0.32'
//Redis
implementation 'org.apache.commons:commons-pool2:2.11.1'
//Cache
implementation 'org.springframework.boot:spring-boot-starter-cache'
//FFmpeg
implementation 'net.bramp.ffmpeg:ffmpeg:0.7.0'
//R
implementation 'com.github.jbytecode:RCaller:4.0.2'
//Python
implementation 'black.ninia:jep:4.1.1'
//XGBoost
implementation files('libs/xgboost4j/xgboost4j_2.12-1.7.5.jar')
implementation files('libs/xgboost4j/xgboost4j_2.12-1.7.5-sources.jar')
implementation 'com.esotericsoftware:kryo:5.5.0'
//Test
testImplementation 'com.opencsv:opencsv:5.7.1'
testImplementation 'commons-collections:commons-collections:3.2.2'
testImplementation 'org.apache.commons:commons-rng-simple:1.5'
}
test {
exclude '**'
}
tasks.named('test') {
useJUnitPlatform()
}