Skip to content

Commit bf14616

Browse files
committed
Fixed Base64 encoding & Added custom logo for file & Updated dependencies (gradle and npm)
1 parent 5d6d069 commit bf14616

File tree

13 files changed

+271
-293
lines changed

13 files changed

+271
-293
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,8 @@ bin/
3838
### Mac OS ###
3939
.DS_Store
4040

41-
.run
41+
.run
42+
43+
/.intellijPlatform
44+
/.node_modules
45+
/.idea

build.gradle.kts

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
plugins {
22
id("java")
33
id("org.jetbrains.kotlin.jvm") version "2.1.20-RC"
4-
id("org.jetbrains.intellij") version "1.17.4"
4+
id("org.jetbrains.intellij.platform") version "2.5.0"
55
id("com.github.node-gradle.node") version "7.1.0"
66
}
77

88
group = "dev.camunda.bpmn"
9-
version = "1.4.3"
9+
version = "1.4.4"
1010

1111
repositories {
1212
mavenCentral()
13-
}
1413

15-
intellij {
16-
version.set("2023.2.6")
17-
type.set("IC")
18-
plugins.set(listOf())
14+
intellijPlatform {
15+
defaultRepositories()
16+
}
1917
}
2018

2119
node {
22-
version.set("23.8.0")
20+
version.set("23.10.0")
2321
download.set(true)
2422
}
2523

@@ -61,4 +59,8 @@ sourceSets {
6159
dependencies {
6260
compileOnly("org.projectlombok:lombok:1.18.36")
6361
annotationProcessor("org.projectlombok:lombok:1.18.36")
62+
63+
intellijPlatform {
64+
intellijIdeaCommunity("2024.3.5")
65+
}
6466
}

lombok.config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
lombok.log.fieldName = log
2+
lombok.log.custom.declaration = com.intellij.openapi.diagnostic.Logger com.intellij.openapi.diagnostic.Logger.getInstance(NAME)

0 commit comments

Comments
 (0)