-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
60 lines (52 loc) · 1.63 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
@file:Suppress("UnstableApiUsage", "unused")
plugins {
alias(libs.plugins.develocityApiConventions)
alias(libs.plugins.javaLibrary)
alias(libs.plugins.javaTestFixtures)
alias(libs.plugins.releaseConventions)
}
group = "dev.erichaag"
version = "0.0.1"
repositories {
mavenCentral()
}
dependencies {
testFixturesImplementation(libs.junit.jupiter)
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
develocityApi {
version = "2024.2"
}
val test by testing.suites.getting(JvmTestSuite::class) {
useJUnitJupiter(libs.versions.junit)
}
val mavenJava by publishing.publications.getting(MavenPublication::class) {
pom {
name = "Develocity Build Processor"
description = "A library to process Develocity™ build data with built-in caching and retry mechanisms."
url = "https://github.com/erichaagdev/develocity-build-processor"
licenses {
license {
name = "MIT License"
url = "https://raw.githubusercontent.com/erichaagdev/develocity-build-processor/main/LICENSE"
distribution = "repo"
}
}
developers {
developer {
id = "erichaagdev"
name = "Eric Haag"
email = "[email protected]"
}
}
scm {
connection = "scm:git:git://github.com/erichaagdev/develocity-build-processor.git"
developerConnection = "scm:git:ssh://github.com/erichaagdev/develocity-build-processor.git"
url = "https://github.com/erichaagdev/develocity-build-processor"
}
}
}