-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
48 lines (38 loc) · 980 Bytes
/
build.gradle.kts
File metadata and controls
48 lines (38 loc) · 980 Bytes
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
plugins {
id("java")
id("org.springframework.boot") version "3.1.3" apply false
id("io.spring.dependency-management") version "1.1.3" apply false
}
group = "xyz.quirkstudios.modalytics"
version = "0.0.1-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
subprojects {
apply<JavaPlugin>()
apply(plugin = "org.springframework.boot")
apply(plugin = "io.spring.dependency-management")
group = "xyz.quirkstudios.modalytics"
version = "0.0.1-SNAPSHOT"
tasks.withType(JavaCompile::class.java) {
options.encoding = "UTF-8"
options.release.set(17)
}
java {
withSourcesJar()
}
repositories {
mavenCentral()
}
//configurations {
// compileOnly {
// extendsFrom(configurations.annotationProcessor.get())
// }
//}
dependencies {
//developmentOnly("org.springframework.boot:spring-boot-devtools")
}
}