-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
59 lines (48 loc) · 1.23 KB
/
build.gradle
File metadata and controls
59 lines (48 loc) · 1.23 KB
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
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.6.0"
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'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'com.squareup:gifencoder:0.10.1'
testImplementation('org.junit.jupiter:junit-jupiter:5.7.2')
testImplementation('org.mockito.kotlin:mockito-kotlin:4.1.0')
}
compileKotlin {
kotlinOptions {
jvmTarget = "17"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "17"
}
}
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