File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change
1
+ import org.jetbrains.changelog.Changelog
1
2
import org.jetbrains.changelog.markdownToHTML
2
3
3
4
fun properties (key : String ) = project.findProperty(key).toString()
4
5
5
6
plugins {
6
7
id(" java" )
7
- id(" org.jetbrains.intellij.platform" ) version " 2.1 .0"
8
- id(" io.freefair.lombok" ) version " 8.11 "
8
+ id(" org.jetbrains.intellij.platform" ) version " 2.5 .0"
9
+ id(" io.freefair.lombok" ) version " 8.13.1 "
9
10
id(" org.jetbrains.changelog" ) version " 2.2.1"
10
11
}
11
12
@@ -24,7 +25,6 @@ repositories {
24
25
25
26
dependencies {
26
27
intellijPlatform {
27
- instrumentationTools()
28
28
zipSigner()
29
29
30
30
create(properties(" platformType" ), properties(" platformVersion" ), false )
@@ -53,14 +53,13 @@ intellijPlatform {
53
53
54
54
// Get the latest available change notes from the changelog file
55
55
changeNotes.set(provider {
56
- changelog.run {
56
+ changelog.renderItem(changelog. run {
57
57
getOrNull(properties(" pluginVersion" )) ? : getLatest()
58
- }.toHTML( )
58
+ }, outputType = Changelog . OutputType . HTML )
59
59
})
60
60
61
61
ideaVersion {
62
62
sinceBuild.set(properties(" pluginSinceBuild" ))
63
- // untilBuild.set(properties("pluginUntilBuild"))
64
63
}
65
64
}
66
65
You can’t perform that action at this time.
0 commit comments