This repository was archived by the owner on Jul 16, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
64 lines (55 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
buildscript {
ext {
indraVersion = "3.1.1"
}
}
plugins {
id "net.kyori.indra" version "$indraVersion" apply false
id "net.kyori.indra.checkstyle" version "$indraVersion" apply false
id "net.kyori.indra.licenser.spotless" version "$indraVersion" apply false
id "net.kyori.indra.publishing.sonatype" version "$indraVersion"
}
group("net.kyori")
version("5.0.0-SNAPSHOT")
description("An event bus system.")
indraSonatype {
useAlternateSonatypeOSSHost("s01")
}
subprojects {
if(name != "event-bom") {
apply plugin: "net.kyori.indra"
apply plugin: "net.kyori.indra.checkstyle"
apply plugin: "net.kyori.indra.licenser.spotless"
repositories {
mavenLocal()
mavenCentral()
sonatype.ossSnapshots()
}
dependencies {
checkstyle("ca.stellardrift:stylecheck:0.2.1")
testImplementation("com.google.guava:guava-testlib:32.0.1-jre")
testImplementation("com.google.truth:truth:1.1.4")
testImplementation("com.google.truth.extensions:truth-java8-extension:1.1.4")
testImplementation(platform("org.junit:junit-bom:5.9.3"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-engine")
}
}
apply plugin: "net.kyori.indra.publishing"
indra {
github("KyoriPowered", "event") {
ci = true
}
mitLicense()
configurePublications {
pom {
developers {
developer {
id = "kashike"
timezone = "America/Vancouver"
}
}
}
}
}
}