-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
48 lines (40 loc) · 859 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
40
41
42
43
44
45
46
47
48
plugins {
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
}
group 'com.github.timmyovo'
version '1.9-SNAPSHOT'
sourceCompatibility = 8
targetCompatibility = 8
configurations {
shadow
compile.extendsFrom shadow
}
repositories {
mavenCentral()
}
shadowJar {
classifier ''
configurations = [project.configurations.shadow]
}
dependencies {
shadow group: 'commons-io', name: 'commons-io', version: '2.7'
}
artifacts {
archives shadowJar
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
pluginName = "CopyToFinder"
version = "1.9-SNAPSHOT"
version = '2019.2.3'
}
patchPluginXml {
sinceBuild = '171'
untilBuild = ''
changeNotes = """
1.9-SNAPSHOT.<br>
<em>Fix compatibility issues.</em>
"""
}