File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ plugins {
2
2
id(" java" )
3
3
id(" org.jetbrains.kotlin.jvm" ) version " 1.9.25"
4
4
id(" org.jetbrains.intellij" ) version " 1.17.4"
5
+ id(" com.github.johnrengelman.shadow" ) version " 8.1.1"
5
6
}
6
7
7
8
group = " com.skgroup"
@@ -19,7 +20,6 @@ dependencies {
19
20
implementation(" org.apache.maven:maven-model-builder:3.6.3" )
20
21
}
21
22
22
-
23
23
// Configure Gradle IntelliJ Plugin
24
24
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
25
25
intellij {
@@ -53,4 +53,15 @@ tasks {
53
53
publishPlugin {
54
54
token.set(System .getenv(" PUBLISH_TOKEN" ))
55
55
}
56
+
57
+ shadowJar {
58
+ archiveClassifier.set(" " )
59
+ dependencies {
60
+ include(dependency(" me.gosimple:nbvcxz:1.5.1" ))
61
+ }
62
+ }
63
+
64
+ buildPlugin {
65
+ dependsOn(shadowJar)
66
+ }
56
67
}
You can’t perform that action at this time.
0 commit comments