-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathidea-integration.gradle
More file actions
41 lines (35 loc) · 925 Bytes
/
idea-integration.gradle
File metadata and controls
41 lines (35 loc) · 925 Bytes
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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.14.1'
id 'io.github.file5.guidesigner' version '1.0.2'
}
repositories {
mavenCentral()
}
intellij {
version = '2023.2.5'
plugins = [ 'com.intellij.java', 'org.jetbrains.plugins.gradle' ]
}
patchPluginXml {
sinceBuild = "211"
}
dependencies {
compileOnly zipTree(project.configurations.detachedConfiguration(dependencies.create("com.jetbrains.intellij.idea:ideaIC:${intellij.version.get()}")).singleFile).matching {
include "lib/app-client.jar"
}
}
configurations.formsClasspath.extendsFrom(configurations.compileOnly)
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
sourceSets {
main {
java {
srcDir '../src/idea-integration/java'
}
resources {
srcDir '../src/idea-integration/resources'
}
}
}