-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (20 loc) · 1.28 KB
/
Copy pathbuild.gradle
File metadata and controls
25 lines (20 loc) · 1.28 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
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
version = project.findProperty('releaseVersion') ?: '1.0.2'
dependencies {
implementation project(':python-embed-runtime')
def springBootVersion = '3.3.5'
implementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
annotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
compileOnly platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
testImplementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
implementation 'org.springframework.boot:spring-boot-autoconfigure'
implementation 'org.slf4j:slf4j-api'
compileOnly 'org.springframework.boot:spring-boot-actuator'
compileOnly 'org.springframework.boot:spring-boot-actuator-autoconfigure'
annotationProcessor 'org.springframework.boot:spring-boot-autoconfigure-processor'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-starter-actuator'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}