-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (49 loc) · 1.58 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
import org.jetbrains.intellij.tasks.RunPluginVerifierTask
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.7.3'
}
group 'com.github.javaica'
version '0.0.4'
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testCompileOnly 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.8.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.8.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2021.1'
plugins 'java'
dependencies {
annotationProcessor 'org.projectlombok:lombok:1.18.20'
}
}
patchPluginXml {
sinceBuild '193.0'
changeNotes """
Added Spring component generation by entity (model, repository, service & controller)<br/>
Added components' basic methods generation when all components are chosen to be generated<br/>
"""
}
publishPlugin {
token = System.getenv('JB_HUB_TOKEN')
}
runPluginVerifier {
ideVersions = ['IC-2019.3.5', 'IC-2020.3.3', 'IC-2021.1.1']
failureLevel = RunPluginVerifierTask.FailureLevel.COMPATIBILITY_PROBLEMS
}
test {
useJUnitPlatform()
}