forked from JetBrains/jewel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
49 lines (41 loc) · 1.25 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
plugins {
jewel
alias(libs.plugins.composeDesktop)
alias(libs.plugins.ideaGradlePlugin)
`android-studio-releases-generator`
}
intellij {
pluginName = "Jewel Demo"
plugins = listOf("org.jetbrains.kotlin")
version = libs.versions.idea.get()
}
// TODO remove this once the IJ Gradle plugin fixes their repositories bug
// See https://github.com/JetBrains/gradle-intellij-plugin/issues/776
repositories {
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://www.jetbrains.com/intellij-repository/releases")
maven("https://cache-redirector.jetbrains.com/intellij-dependencies")
google()
mavenCentral()
}
dependencies {
implementation(projects.ideLafBridge) {
exclude(group = "org.jetbrains.kotlinx")
}
implementation(projects.markdown.ideLafBridgeStyling) {
exclude(group = "org.jetbrains.kotlinx")
}
implementation(compose.desktop.currentOs) {
exclude(group = "org.jetbrains.compose.material")
exclude(group = "org.jetbrains.kotlinx")
}
}
tasks {
// We don't have any settings in the demo plugin
buildSearchableOptions {
enabled = false
}
runIde {
systemProperties["org.jetbrains.jewel.debug"] = "true"
}
}