forked from AutismSuperman/git-commit-message-helper
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
43 lines (37 loc) · 1.03 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.14'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
group 'com.fulinlin'
version '1.0.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'uk.com.robust-it', name: 'cloning', version: '1.9.12'
compileOnly 'org.projectlombok:lombok:1.18.4'
annotationProcessor 'org.projectlombok:lombok:1.18.4'
compile 'com.google.cloud:google-cloud-translate:1.97.0'
implementation 'org.junit.jupiter:junit-jupiter:5.4.2'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// version 'IU-2017.1'
version 'IU-2020.1'
pluginName 'TW Git Commit Message Helper'
updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
<ul>
<li>Translation convert type</li>
<li>Grammatical error correction type</li>
<li>personalized submission type<br></li>
<li>personalized submission template</li>
</ul>
"""
}