-
Notifications
You must be signed in to change notification settings - Fork 40
/
build.gradle
55 lines (46 loc) · 1.69 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
plugins {
id 'org.jetbrains.intellij' version '1.17.0'
id 'java'
}
group 'com.github.jetplugins'
version '1.1.9'
java.sourceCompatibility = 1.8
java.targetCompatibility = 1.8
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
repositories {
mavenCentral()
}
dependencies {
implementation 'io.swagger.core.v3:swagger-models:2.2.6'
implementation 'io.github.openfeign:feign-core:12.1'
implementation 'io.github.openfeign:feign-gson:12.1'
implementation 'io.github.openfeign.form:feign-form:3.8.0'
implementation 'org.slf4j:slf4j-api:2.0.5'
implementation 'commons-io:commons-io:2.11.0'
implementation('org.apache.xmlgraphics:batik-codec:1.16') {
exclude group: 'xml-apis', module: 'xml-apis'
exclude group: 'xml-apis', module: 'xml-apis-ext'
}
implementation 'org.eclipse.birt.runtime.3_7_1:org.w3c.dom.svg:1.1.0'
implementation 'org.eclipse.birt.runtime.3_7_1:org.w3c.dom.smil:1.0.0'
implementation 'org.eclipse.birt.runtime.3_7_1:org.w3c.css.sac:1.3.0'
implementation 'org.yaml:snakeyaml:2.1'
// lombok
compileOnly 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
testCompileOnly 'org.projectlombok:lombok:1.18.26'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.26'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2022.3'
sandboxDir = "${project.rootDir}/.sandbox"
updateSinceUntilBuild = false
plugins = ['java', 'properties']
}
test {
useJUnitPlatform()
}