-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
executable file
·59 lines (48 loc) · 1.2 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
buildscript {
repositories {
mavenCentral()
jcenter()
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
id 'org.jetbrains.intellij' version '0.4.21'
id "io.gitlab.arturbosch.detekt" version "1.9.1"
}
group 'com.pandora.plugin'
version '0.4.3'
patchPluginXml {
changeNotes """
<ul>
<li>0.1: Initial version of the Multiple File Kotlin Converter plugin for IntelliJ IDEA.</li>
<li>0.2: Fixing small issues found in testing with cancellation and layout.</li>
<li>0.3: Save commit message during a single session.</li>
<li>0.4: Fix Deprecated project root usage.</li>
</ul>
"""
}
intellij {
version '2017.2'
updateSinceUntilBuild false
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
publishPlugin {
token project.properties['jetbrains.publish.token']
}
apply plugin: 'io.gitlab.arturbosch.detekt'
tasks.detekt.jvmTarget = "1.8"
detekt {
parallel = true
buildUponDefaultConfig = true
input = files("$projectDir")
}
dependencies {
detektPlugins "io.gitlab.arturbosch.detekt:detekt-formatting:1.9.1"
}