-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
42 lines (35 loc) ยท 1.21 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
plugins {
id "application"
id "org.jetbrains.kotlin.jvm" version "${jetbrainKotlinVersion}"
id "org.jetbrains.kotlin.plugin.spring" version "${jetbrainKotlinVersion}"
id 'org.jetbrains.kotlin.plugin.jpa' version "${jetbrainKotlinVersion}"
id "org.springframework.boot" version "${springbootVersion}"
id "io.spring.dependency-management" version "${springDependencyManagementVersion}"
id "io.sentry.jvm.gradle" version "${sentryVersion}"
}
group = "${group}"
version = "${version}"
repositories {
mavenCentral()
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://s01.oss.sonatype.org/content/groups/staging/" }
}
test {
useJUnitPlatform()
}
application {
mainClassName = 'org.gitanimals.Application'
}
sentry {
includeSourceContext = true
org = "devxb"
projectName = "gitanimals-render"
authToken = System.getProperty("SENTRY_AUTH_TOKEN")
}
apply from: "gradle/db.gradle"
apply from: "gradle/core.gradle"
apply from: "gradle/test.gradle"
apply from: "gradle/spring.gradle"
apply from: "gradle/monitor.gradle"
apply from: "gradle/jetbrains.gradle"