File tree Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id(" java" )
3
- kotlin(" jvm" ) version " 1.9.22 "
4
- id(" org.jetbrains.intellij" ) version " 1.17.2 "
3
+ kotlin(" jvm" ) version " 1.9.25 "
4
+ id(" org.jetbrains.intellij" ) version " 1.17.4 "
5
5
id(" com.github.johnrengelman.shadow" ) version " 8.1.1"
6
6
}
7
7
@@ -15,12 +15,12 @@ repositories {
15
15
}
16
16
17
17
dependencies {
18
- implementation(" com.squareup.okhttp3: okhttp:4.12.0 " )
19
- implementation(" org .freemarker:freemarker:2.3.32 " )
18
+ implementation(libs. okhttp)
19
+ implementation(libs .freemarker)
20
20
}
21
21
22
22
intellij {
23
- version.set(" 2023.2 .2" )
23
+ version.set(" 2024.2.0 .2" )
24
24
25
25
plugins.addAll(
26
26
" java" ,
@@ -42,11 +42,19 @@ kotlin {
42
42
43
43
44
44
tasks {
45
-
46
- shadowJar {
45
+ shadowJar {
47
46
archiveClassifier.set(" all" )
48
- relocate(" org. freemarker" , " org.tabooproject.intellij.freemarker" )
47
+ relocate(" freemarker" , " org.tabooproject.intellij.freemarker" )
49
48
relocate(" okhttp3" , " org.tabooproject.intellij.okhttp3" )
49
+ relocate(" okio" , " org.tabooproject.intellij.okio" )
50
+ dependencies {
51
+ exclude(dependency(" org.jetbrains.kotlin:::" ))
52
+ exclude(dependency(" org.jetbrains:::" ))
53
+ }
54
+ }
55
+
56
+ build {
57
+ dependsOn(shadowJar)
50
58
}
51
59
52
60
patchPluginXml {
Original file line number Diff line number Diff line change
1
+ [versions ]
2
+ okhttp =" 4.12.0"
3
+ freemarker =" 2.3.32"
4
+
5
+ [libraries ]
6
+ okhttp ={ module = " com.squareup.okhttp3:okhttp" , version.ref = " okhttp" }
7
+ freemarker ={module = " org.freemarker:freemarker" , version.ref = " freemarker" }
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.2 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.9 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments