-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
62 lines (54 loc) · 1.21 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
56
57
58
59
60
61
62
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.7.2'
id 'org.jetbrains.kotlin.jvm' version '1.7.20'
id "org.jlleitschuh.gradle.ktlint" version "11.0.0"
}
group 'dmitriy.molchanov'
version '1.4.2'
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_11
}
ktlint {
ignoreFailures = false
reporters {
reporter "plain"
reporter "checkstyle"
reporter "sarif"
}
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.7.20'
testImplementation "junit:junit:4.13.2"
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.9.0'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2020.3.2'
plugins = ['Git4Idea']
}
patchPluginXml {
changeNotes """
<b>1.4.1</b><br>
<ul>
<li>Regex bugfix.</li>
</ul>
<b>1.4</b><br>
<ul>
<li>Added the ability to add additional text around the result regex value.</li>
<li>Added the ability change text register.</li>
</ul>
"""
}
test {
useJUnitPlatform()
}
runPluginVerifier {
ideVersions = ["IC-2021.2"]
}
patchPluginXml {
untilBuild null
}