-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
41 lines (33 loc) · 1.02 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
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.5.21"
id 'org.jetbrains.intellij' version '1.1.4'
id 'org.jetbrains.changelog' version '1.2.1'
}
apply plugin: 'org.jetbrains.changelog'
group 'de.ehmkah.projects'
version '1.12.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.squareup:gifencoder:0.10.1'
testImplementation('org.junit.jupiter:junit-jupiter:5.7.2')
testImplementation('com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0')
}
intellij {
version.set('2021.2')
patchPluginXml {
changeNotes.set(provider({changelog.getLatest().toHTML()}))
}
}
changelog {
version = "1.11.0"
path = "${project.projectDir}/CHANGELOG.md"
header = "[${-> version.get()}]}"
itemPrefix = "-"
keepUnreleasedSection = true
unreleasedTerm = "[Unreleased]"
groups = ["Added", "Changed", "Deprecated", "Removed", "Fixed", "Security"]
}
// Workaround because of https://youtrack.jetbrains.com/issue/KT-42837
buildSearchableOptions.enabled=false