forked from KyoriPowered/adventure-text-feature-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
78 lines (66 loc) · 1.56 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
buildscript {
ext {
indraVersion = "3.1.1"
}
}
plugins {
id 'net.kyori.indra' version "$indraVersion"
id 'net.kyori.indra.publishing.sonatype' version "$indraVersion"
id 'net.kyori.indra.licenser.spotless' version "$indraVersion"
}
group 'net.kyori'
version '4.0.0-SNAPSHOT'
description 'A pagination feature for Adventure.'
repositories {
mavenCentral()
sonatype.ossSnapshots()
}
indraSonatype {
useAlternateSonatypeOSSHost("s01")
}
dependencies {
api 'net.kyori:adventure-api:4.14.0'
testImplementation 'com.google.guava:guava-testlib:32.0.0-jre'
testImplementation 'com.google.truth:truth:1.1.5'
testImplementation 'com.google.truth.extensions:truth-java8-extension:1.1.5'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
}
jar {
manifest.attributes(
'Automatic-Module-Name': 'net.kyori.adventure.text.feature.pagination'
)
}
indra {
javaVersions {
testWith(8, 11, 17)
}
github("KyoriPowered", "adventure-text-feature-pagination") {
ci(true)
}
mitLicense()
configurePublications {
pom {
developers {
developer {
id = 'kashike'
timezone = 'America/Vancouver'
}
developer {
id = 'lucko'
name = 'Luck'
url = 'https://lucko.me'
email = '[email protected]'
}
developer {
id = 'zml'
name = 'zml'
timezone = 'America/Vancouver'
}
developer {
id = 'Electroid'
}
}
}
}
}