-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (51 loc) · 1.33 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
plugins {
id 'org.jetbrains.intellij' version '1.15.0'
id 'org.jetbrains.kotlin.jvm' version '1.9.0'
id 'java'
}
java {
// required by IJ 2023.2
sourceCompatibility '17'
targetCompatibility '17'
}
compileKotlin {
kotlinOptions {
jvmTarget = "17" // required by IJ 2023.2
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "17" // required by IJ 2023.2
}
}
group 'com.brownian.testify'
version '1.1.2'
repositories {
mavenCentral()
maven{
url 'https://www.jetbrains.com/intellij-repository/releases'
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2023.2'
type = 'GO'
plugins = ['org.jetbrains.plugins.go']
downloadSources = true
}
patchPluginXml {
changeNotes = """
1.1.2 Moving support to version 2023.2
1.1.1 Fixed/mitigated "NullPointerException" issue when populating suggestions for mock types with unknown type spec
1.1.0 Moving support to version 2022.1.4
1.0.2 Added suggestions for method names in mock.On("methodName", ...) calls
"""
}
test {
useJUnitPlatform()
}