-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
39 lines (35 loc) · 1.05 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
plugins {
// https://github.com/JetBrains/gradle-intellij-plugin/blob/master/README.md
id 'org.jetbrains.intellij' version '1.16.1'
id 'java'
}
group 'cn.bigcoder.plugin'
version '1.3.3'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.13.0'
/ object 转 xml 依赖 开始/
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.3'
/ object 转 xml 依赖 结束/
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2023.3.1'
plugins = ['com.intellij.java']
}
patchPluginXml {
sinceBuild = '211'
untilBuild = '281'
changeNotes = """
1. new feature: Object Copy Method support builder mode.
"""
}
test {
useJUnitPlatform()
}