-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (51 loc) · 1.29 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
plugins {
id("java")
id ("idea")
id("org.jetbrains.intellij") version "1.17.4"
alias(libs.plugins.changelog) // Gradle Changelog Plugin
}
group = "com.ssharaev"
version = "0.1.0"
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_17
}
intellij {
version.set("2023.3.7")
plugins = [
"java",
"gradle",
"maven"
]
}
// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
changelog {
path.set(file("CHANGELOG.md").canonicalPath)
groups.empty()
repositoryUrl = providers.gradleProperty("pluginRepositoryUrl")
}
dependencies {
implementation 'io.kubernetes:client-java:22.0.0'
compileOnly 'org.projectlombok:lombok:1.18.36'
annotationProcessor 'org.projectlombok:lombok:1.18.36'
testCompileOnly('org.projectlombok:lombok:1.18.36')
testImplementation(libs.junit)
testImplementation (libs.mockito)
}
tasks {
buildSearchableOptions {
enabled = false
}
patchPluginXml {
sinceBuild.set("233")
untilBuild.set(provider { null })
changeNotes = provider {
changelog.renderItem(changelog.getLatest()
.withHeader(false)
.withEmptySections(false),
org.jetbrains.changelog.Changelog.OutputType.HTML)
}
}
}