-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
65 lines (51 loc) · 1.3 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
60
61
62
63
64
65
buildscript {
ext.kotlin_version = '1.1.51'
repositories {
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "org.jetbrains.intellij" version "0.2.17"
id "org.jetbrains.kotlin.jvm" version "1.1.1"
}
repositories {
jcenter()
}
sourceSets {
main.kotlin.srcDirs += 'src/main/java'
}
compileKotlin {
kotlinOptions {
jvmTarget = '1.8'
}
}
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
apply plugin: "kotlin"
group 'com.intellij.debugger.stream'
version '0.1.6'
intellij {
type = 'IC'
version = '2017.2'
pluginName = 'stream-debugger'
updateSinceUntilBuild = false
sandboxDirectory = project.rootDir.canonicalPath + "/.sandbox"
}
dependencies {
compile files("${System.properties['java.home']}/../lib/tools.jar")
}
task psiTest(type: Test, group: 'Verification') {
include 'com/intellij/debugger/streams/chain/*'
}
task streamExTest(type: Test, group: 'Verification') {
include 'com/intellij/debugger/streams/exec/streamex/*'
}
task stdLibStreamsTest(type: Test, group: 'Verification') {
include 'com/intellij/debugger/streams/exec/*'
exclude 'com/intellij/debugger/streams/exec/streamex/*'
}