-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·44 lines (39 loc) · 1.09 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.7'
// id 'org.jetbrains.intellij' version '1.6.0'
}
group 'cn.yitulin'
version '1.0.2'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
implementation 'cn.hutool:hutool-all:5.8.5'
implementation 'org.xerial:sqlite-jdbc:3.36.0.3'
testImplementation 'ch.qos.logback:logback-classic:1.2.10'
// 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 = '2018.3.6'
updateSinceUntilBuild = false
// version = '2021.1.3'
}
patchPluginXml {
changeNotes = """
1.0.2<br>
<em>Fixed some known bugs.</em><br>
1.0.1<br>
<em>Support custom cookie database path.</em><br>
<em>Add service name for easy selection.</em><br>
1.0.0<br>
<em>init version.</em><br>"""
}
test {
useJUnitPlatform()
}