-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
78 lines (72 loc) · 2.55 KB
/
build.gradle.kts
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
plugins {
id("java")
id("org.jetbrains.intellij.platform") version "2.2.1"
}
group = "cx.eri.guttercoveragedisplay"
version = "1.0.2"
repositories {
mavenCentral()
intellijPlatform {
defaultRepositories()
intellijDependencies()
}
}
dependencies {
implementation("com.google.code.gson:gson:2.11.0")
intellijPlatform {
create("IC", "2024.2")
bundledPlugins("Git4Idea")
}
}
intellijPlatform {
pluginConfiguration {
id = "cx.eri.gutter-coverage-display"
name = "Gutter Coverage Display"
version = project.version.toString()
description = """
<p>A simple IntelliJ-based plugin to display and toggle coverage data in the gutter, specifically for the repository
<a href="https://github.com/techops-e2ecs/psa-sfdx">psa-sfdx</a>.</p>
<p>This plugin allows users to read external coverage JSON files and display the coverage data directly in the gutter of the code editor.</p>
<ul>
<li>Toggle coverage data visibility</li>
<li>Supports custom JSON coverage files</li>
<li>Seamless integration with Git</li>
</ul>
<p>For more information, please visit our <a href="https://github.com/Eric-2369/GutterCoverageDisplay">project page</a>.</p>
""".trimIndent()
changeNotes = """
<h2>Version 1.0.2</h2>
<ul>
<li>Updated dependencies to ensure compatibility with IntelliJ IDEA 2024.2.</li>
<li>Increased the minimum supported version to IntelliJ IDEA 2024.2.</li>
</ul>
<h2>Version 1.0.1</h2>
<ul>
<li>Updated plugin icon.</li>
<li>Improved plugin description.</li>
</ul>
<h2>Initial Release - Version 1.0.0</h2>
<ul>
<li>Initial release of Gutter Coverage Display plugin.</li>
<li>Added feature to read and display coverage data from external JSON files.</li>
<li>Implemented toggle functionality for coverage data visibility.</li>
</ul>
""".trimIndent()
vendor {
name = "Eric2369"
email = "[email protected]"
url = "https://eri.cx"
}
ideaVersion {
sinceBuild = "242"
untilBuild = provider { null }
}
}
}
tasks {
publishPlugin {
token.set(System.getenv("INTELLIJ_PUBLISH_TOKEN"))
channels.set(listOf("default"))
hidden.set(true)
}
}