-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (31 loc) · 1.15 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
import org.springframework.boot.gradle.plugin.SpringBootPlugin
plugins {
id 'com.google.protobuf' version "$protobufPluginVersion" apply false
id 'io.spring.dependency-management' version '1.1.0' apply false
id 'org.springframework.boot' version "$springBootVersion" apply false
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion" apply false
id 'org.jetbrains.kotlin.plugin.spring' version "$kotlinVersion" apply false
id 'org.jetbrains.kotlin.plugin.jpa' version "$kotlinVersion" apply false
id 'com.avast.gradle.docker-compose' version '0.17.4' apply false
}
subprojects {
apply {
plugin 'java'
}
repositories {
mavenCentral()
maven {
url = uri("https://asia-northeast3-maven.pkg.dev/ftgo-jangjunha/maven-public/")
}
}
dependencies {
implementation platform(SpringBootPlugin.BOM_COORDINATES)
implementation platform("io.eventuate.platform:eventuate-platform-dependencies:$eventuatePlatformVersion")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
vendor = JvmVendorSpec.BELLSOFT
}
}
}