-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
56 lines (50 loc) · 1.7 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
plugins {
alias(libs.plugins.configuration)
}
version = properties["version"] as String
allprojects {
apply(plugin = "me.philippheuer.configuration")
repositories {
mavenCentral()
}
projectConfiguration {
language.set(me.philippheuer.projectcfg.domain.ProjectLanguage.JAVA)
type.set(me.philippheuer.projectcfg.domain.ProjectType.LIBRARY)
javaVersion.set(JavaVersion.VERSION_17)
artifactGroupId.set("io.github.iprodigy.bttv")
disablePluginModules = listOf("DependencyReport", "LombokFeature")
pom = {
it.url.set("https://github.com/iProdigy/bttv4j")
it.issueManagement {
system.set("GitHub")
url.set("https://github.com/iProdigy/bttv4j/issues")
}
it.inceptionYear.set("2025")
it.developers {
developer {
id.set("iProdigy")
email.set("[email protected]")
roles.add("maintainer")
}
}
it.licenses {
license {
name.set("MPL-2.0")
distribution.set("repo")
url.set("https://github.com/iProdigy/bttv4j/blob/main/LICENSE")
}
}
it.scm {
connection.set("scm:git:https://github.com/iProdigy/bttv4j.git")
developerConnection.set("scm:git:[email protected]:iProdigy/bttv4j.git")
url.set("https://github.com/iProdigy/bttv4j")
}
}
}
tasks.withType<Test> {
useJUnitPlatform {
includeTags("unittest")
excludeTags("integration")
}
}
}