generated from semicolondsm/Semicolon_Repository_Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
158 lines (120 loc) · 4.32 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "3.0.1"
id("io.spring.dependency-management") version "1.0.11.RELEASE"
kotlin("jvm") version "1.6.21"
kotlin("plugin.spring") version "1.6.21"
kotlin("plugin.jpa") version "1.6.21"
kotlin("kapt") version "1.6.21"
}
group = "com.example"
version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
}
extra["springCloudVersion"] = "2022.0.1"
dependencies {
// jackson
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
// jpa
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-web")
// kotlin
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
// configuration processor
kapt("org.springframework.boot:spring-boot-configuration-processor")
// test
testImplementation("org.springframework.boot:spring-boot-starter-test")
// oauth
implementation("org.springframework.security:spring-security-oauth2-authorization-server:1.0.3")
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
implementation("org.springframework.security:spring-security-oauth2-client")
// jpa
implementation("org.springframework.data:spring-data-jpa")
runtimeOnly("mysql:mysql-connector-java")
implementation("com.vladmihalcea:hibernate-types-60:2.21.1")
// Cloud Config
implementation("org.springframework.cloud:spring-cloud-starter-config")
// OpenFeign
implementation("org.springframework.cloud:spring-cloud-starter-openfeign:3.1.4")
// validation
implementation("org.springframework.boot:spring-boot-starter-validation")
// secondary cache
implementation("org.springframework.boot:spring-boot-starter-data-redis")
//jwt
implementation("io.jsonwebtoken:jjwt:0.9.1")
}
dependencyManagement {
imports {
mavenBom("org.springframework.cloud:spring-cloud-dependencies:${property("springCloudVersion")}")
}
}
allOpen {
annotation("jakarta.persistence.Entity")
annotation("jakarta.persistence.MappedSuperclass")
annotation("jakarta.persistence.Embeddable")
}
noArg {
annotation("jakarta.persistence.Entity")
annotation("jakarta.persistence.MappedSuperclass")
annotation("jakarta.persistence.Embeddable")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
val ktlint: Configuration by configurations.creating
dependencies {
ktlint("com.pinterest:ktlint:0.44.0") {
attributes {
attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
}
}
}
val outputDir = "${project.buildDir}/reports/ktlint/"
val inputFiles = project.fileTree(mapOf("dir" to "src", "include" to "**/*.kt"))
// Checking lint
val ktlintCheck by tasks.creating(JavaExec::class) {
inputs.files(inputFiles)
outputs.dir(outputDir)
description = "Check Kotlin code style."
classpath = ktlint
mainClass.set("com.pinterest.ktlint.Main")
args = listOf("**/*.kt", "**/*.kts")
}
// Formatting all source files
val ktlintFormat by tasks.creating(JavaExec::class) {
inputs.files(inputFiles)
outputs.dir(outputDir)
description = "Fix Kotlin code style deviations."
classpath = ktlint
mainClass.set("com.pinterest.ktlint.Main")
args = listOf("-F", "**/*.kt")
jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED")
}
val installGitHook by tasks.creating(Copy::class) {
description = "Install git hook to root project."
var suffix = "macos"
if (org.apache.tools.ant.taskdefs.condition.Os.isFamily(org.apache.tools.ant.taskdefs.condition.Os.FAMILY_WINDOWS)) {
suffix = "windows"
}
val sourceDir = File(rootProject.rootDir, "pre-build/scripts/ktlint/pre-push-on-$suffix")
val targetDir = File(rootProject.rootDir, ".git/hooks")
from(sourceDir)
into(targetDir)
rename("pre-push-$suffix", "pre-push")
fileMode = 0b111101101
}
project.tasks
.getByName("build")
.dependsOn(":installGitHook")
tasks.getByName<Jar>("jar") {
enabled = false
}