-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (34 loc) · 863 Bytes
/
build.gradle
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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.15.0'
id 'org.jetbrains.kotlin.jvm' version '1.9.0'
}
group 'com.intellij.plugin.copy.options'
version '0.4'
sourceCompatibility = 17
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
}
compileKotlin {
kotlinOptions.jvmTarget = "17"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "17"
}
intellij {
type = 'IC'
version = '2022.3'// https://www.jetbrains.com/intellij-repository/[releases|snapshots]
updateSinceUntilBuild = false
pluginName = 'CopyOptionPath'
}
patchPluginXml {
changeNotes = """
Adds 'Copy Option Path' action to copy full path to an option from IDE dialogs.<br>
"""
}