-
-
Notifications
You must be signed in to change notification settings - Fork 467
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
130 lines (116 loc) · 4.08 KB
/
build.gradle.kts
File metadata and controls
130 lines (116 loc) · 4.08 KB
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
import net.ltgt.gradle.errorprone.errorprone
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.springframework.boot.gradle.plugin.SpringBootPlugin
plugins {
`java-library`
id("io.sentry.javadoc")
alias(libs.plugins.kotlin.jvm)
jacoco
alias(libs.plugins.errorprone)
alias(libs.plugins.gradle.versions)
alias(libs.plugins.buildconfig)
alias(libs.plugins.springboot3) apply false
}
configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<KotlinCompile>().configureEach {
kotlin {
compilerOptions.jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
compilerOptions.languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9
compilerOptions.apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9
compilerOptions.freeCompilerArgs = listOf("-Xjsr305=strict")
}
}
dependencies {
api(projects.sentry)
compileOnly(platform(SpringBootPlugin.BOM_COORDINATES))
compileOnly(Config.Libs.springWeb)
compileOnly(Config.Libs.springAop)
compileOnly(Config.Libs.springSecurityWeb)
compileOnly(Config.Libs.aspectj)
compileOnly(libs.context.propagation)
compileOnly(libs.jetbrains.annotations)
compileOnly(libs.nopen.annotations)
compileOnly(libs.otel)
compileOnly(libs.servlet.jakarta.api)
compileOnly(libs.slf4j.api)
compileOnly(libs.springboot3.starter.graphql)
compileOnly(libs.spring.kafka3)
compileOnly(libs.springboot3.starter.quartz)
compileOnly(Config.Libs.springWebflux)
compileOnly(projects.sentryGraphql)
compileOnly(projects.sentryGraphql22)
compileOnly(projects.sentryQuartz)
compileOnly(projects.sentryOpentelemetry.sentryOpentelemetryAgentcustomization)
compileOnly(projects.sentryOpentelemetry.sentryOpentelemetryBootstrap)
api(projects.sentryReactor)
errorprone(libs.errorprone.core)
errorprone(libs.nopen.checker)
errorprone(libs.nullaway)
// tests
testImplementation(projects.sentryTestSupport)
testImplementation(projects.sentryGraphql)
testImplementation(kotlin(Config.kotlinStdLib))
testImplementation(libs.awaitility.kotlin)
testImplementation(libs.context.propagation)
testImplementation(libs.graphql.java24)
testImplementation(libs.kotlin.test.junit)
testImplementation(libs.mockito.kotlin)
testImplementation(libs.mockito.inline)
testImplementation(libs.springboot3.starter.aop)
testImplementation(libs.springboot3.starter.graphql)
testImplementation(libs.springboot3.starter.security)
testImplementation(libs.spring.kafka3)
testImplementation(libs.springboot3.starter.test)
testImplementation(libs.springboot3.starter.web)
testImplementation(libs.springboot3.starter.webflux)
testImplementation(projects.sentryReactor)
}
configure<SourceSetContainer> { test { java.srcDir("src/test/java") } }
jacoco { toolVersion = libs.versions.jacoco.get() }
tasks.jacocoTestReport {
reports {
xml.required.set(true)
html.required.set(false)
}
}
tasks {
jacocoTestCoverageVerification {
violationRules { rule { limit { minimum = Config.QualityPlugins.Jacoco.minimumCoverage } } }
}
check {
dependsOn(jacocoTestCoverageVerification)
dependsOn(jacocoTestReport)
}
}
buildConfig {
useJavaOutput()
packageName("io.sentry.spring.jakarta")
buildConfigField(
"String",
"SENTRY_SPRING_JAKARTA_SDK_NAME",
"\"${Config.Sentry.SENTRY_SPRING_JAKARTA_SDK_NAME}\"",
)
buildConfigField("String", "VERSION_NAME", "\"${project.version}\"")
}
tasks.withType<JavaCompile>().configureEach {
dependsOn(tasks.generateBuildConfig)
options.errorprone {
check("NullAway", net.ltgt.gradle.errorprone.CheckSeverity.ERROR)
option("NullAway:AnnotatedPackages", "io.sentry")
}
}
tasks.jar {
manifest {
attributes(
"Sentry-Version-Name" to project.version,
"Sentry-SDK-Name" to Config.Sentry.SENTRY_SPRING_JAKARTA_SDK_NAME,
"Sentry-SDK-Package-Name" to "maven:io.sentry:sentry-spring-jakarta",
"Implementation-Vendor" to "Sentry",
"Implementation-Title" to project.name,
"Implementation-Version" to project.version,
)
}
}