forked from aemtools/aemtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
279 lines (232 loc) · 7.54 KB
/
build.gradle.kts
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
import io.gitlab.arturbosch.detekt.Detekt
import kotlinx.kover.gradle.plugin.dsl.MetricType
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
fun properties(key: String) = project.findProperty(key).toString()
val pluginName: String by extra
val pluginGroup: String by extra
val pluginVersion: String by extra
val platformVersion: String by extra
val platformType: String by extra
val platformPlugins: String by extra
val javaVersion: String by extra
val kotlinVersion: String by extra
val rootProjectDirectory = projectDir
val rootProject = project
plugins {
id("java")
kotlin("jvm") version "1.7.10"
id("org.jetbrains.intellij") version "1.13.2"
id("org.jetbrains.changelog") version "1.3.1" apply false
id("io.gitlab.arturbosch.detekt") version "1.19.0"
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha"
}
group = pluginGroup
version = pluginVersion
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.toVersion(javaVersion.toInt())
targetCompatibility = JavaVersion.toVersion(javaVersion.toInt())
toolchain {
languageVersion.set(JavaLanguageVersion.of(javaVersion))
}
}
intellij {
pluginName.set(properties("pluginName"))
version.set(platformVersion)
type.set(platformType)
plugins.set(platformPlugins.split(',').map(String::trim).filter(String::isNotEmpty))
}
kover {
disabledForProject = false
useKoverTool()
}
koverReport {
filters {
excludes {
classes("generated.psi.impl.*", "com.aemtools.test.*")
}
}
html {
title = "AEM Tool test coverage merged report"
onCheck = true
setReportDir(layout.buildDirectory.dir("merged-report/html"))
}
verify {
onCheck = true
rule {
bound {
metric = MetricType.LINE
minValue = 80
}
}
}
}
tasks {
wrapper {
gradleVersion = properties("gradleVersion")
}
buildSearchableOptions {
enabled = false
}
runIde {
configDir.set(file("${project(":aem-intellij-core").buildDir}/idea-sandbox/config"))
pluginsDir.set(file("${project(":aem-intellij-core").buildDir}/idea-sandbox/plugins"))
systemDir.set(file("${project(":aem-intellij-core").buildDir}/idea-sandbox/system"))
}
buildSearchableOptions { enabled = false }
runPluginVerifier { enabled = false }
listProductsReleases { enabled = false }
verifyPlugin { enabled = false }
}
dependencies {
kover(project(":aem-intellij-common"))
kover(project(":aem-intellij-core"))
kover(project(":aem-intellij-lang"))
kover(project(":aem-intellij-index"))
kover(project(":aem-intellij-inspection"))
}
buildscript {
repositories {
mavenCentral()
maven { url = uri("https://www.jetbrains.com/intellij-repository/releases") }
dependencies {
classpath("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.19.0")
}
}
}
allprojects {
apply {
plugin("io.gitlab.arturbosch.detekt")
plugin("java")
}
repositories {
mavenCentral()
maven { url = uri("https://www.jetbrains.com/intellij-repository/releases") }
}
detekt {
toolVersion = "1.19.0"
config = files("$rootProjectDirectory/config/detekt.yml")
parallel = true
ignoreFailures = true
buildUponDefaultConfig = true
disableDefaultRuleSets = true
autoCorrect = true
source = files("src/main/java", "src/main/kotlin")
}
java {
sourceCompatibility = JavaVersion.toVersion(javaVersion.toInt())
targetCompatibility = JavaVersion.toVersion(javaVersion.toInt())
toolchain {
languageVersion.set(JavaLanguageVersion.of(javaVersion))
}
}
tasks.withType<JavaCompile>().configureEach {
options.release.set(javaVersion.toInt())
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
javaCompiler.set(javaToolchains.compilerFor {
languageVersion.set(JavaLanguageVersion.of(javaVersion))
})
}
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = javaVersion
kotlinOptions.apiVersion = "1.7"
kotlinOptions.languageVersion = "1.7"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform {
includeEngines("spek", "junit-vintage", "junit-jupiter")
}
testLogging {
events("standardOut", "passed", "skipped", "failed")
showStandardStreams = true
}
val testJavaDir = rootProject.allprojects.first {
it.name == "test-framework"
}.projectDir.absolutePath + "/src/main/resources/java"
logger.lifecycle("Test java directory: $testJavaDir")
systemProperty("test.java.dir", testJavaDir)
}
tasks.withType<Detekt>().configureEach {
exclude("com.aemtools.test.*", ".*test.*")
}
}
subprojects {
apply {
plugin("org.jetbrains.intellij")
}
repositories {
mavenCentral()
maven { url = uri("https://www.jetbrains.com/intellij-repository/releases") }
}
intellij {
pluginName.set(properties("pluginName"))
version.set(platformVersion)
type.set(platformType)
plugins.set(platformPlugins.split(',').map(String::trim).filter(String::isNotEmpty))
}
tasks {
buildSearchableOptions { enabled = false }
runPluginVerifier { enabled = false }
listProductsReleases { enabled = false }
verifyPlugin { enabled = false }
}
val kotlinVersion: String by extra
val mockitoKotlinVersion: String by extra
val spekVersion: String by extra
val junit4Version: String by extra
val junitBomVersion: String by extra
val assertjVersion: String by extra
val mockitoVersion: String by extra
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion")
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
testImplementation("org.assertj:assertj-core:$assertjVersion")
testImplementation("org.mockito:mockito-core:$mockitoVersion")
testImplementation("org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion")
// Use junit-bom to align versions
// https://docs.gradle.org/current/userguide/managing_transitive_dependencies.html#sec:bom_import
implementation(platform("org.junit:junit-bom:$junitBomVersion")) {
because("Platform, Jupiter, and Vintage versions should match")
}
// JUnit Jupiter
testImplementation("org.junit.jupiter:junit-jupiter")
// JUnit Vintage
testImplementation("junit:junit:$junit4Version")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine") {
because("allows JUnit 3 and JUnit 4 tests to run")
}
// JUnit Suites
testImplementation("org.junit.platform:junit-platform-suite")
// JUnit Platform Launcher + Console
testRuntimeOnly("org.junit.platform:junit-platform-launcher") {
because("allows tests to run from IDEs that bundle older version of launcher")
}
testRuntimeOnly("org.junit.platform:junit-platform-console") {
because("needed to launch the JUnit Platform Console program")
}
testImplementation("org.jetbrains.spek:spek-api:$spekVersion") {
exclude(group = "org.jetbrains.kotlin")
}
testRuntimeOnly("org.jetbrains.spek:spek-junit-platform-engine:$spekVersion") {
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.junit.platform")
}
testImplementation("org.jetbrains.spek:spek-subject-extension:$spekVersion") {
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.junit.platform")
}
}
// gross patch to address windows "too long classpath" issue
/*if (Os.isFamily(Os.FAMILY_WINDOWS)) {
project.apply {
from("${project.rootProject.projectDir}/buildSrc/win-patch.gradle.kts")
}
}*/
}
apply {
from("buildSrc/idea.gradle.kts")
}