-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
58 lines (49 loc) · 1.43 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
plugins {
id("java")
id("maven-publish")
id("net.thebugmc.gradle.sonatype-central-portal-publisher") version "1.1.1"
}
group = "dev.dubsky"
version = "1.2"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.mockito:mockito-core:4.0.0")
}
tasks.test {
useJUnitPlatform()
}
signing {
useGpgCmd()
}
centralPortal {
pom {
name = "RapidRequest"
description = "A small and lightweight library to make api requests easier"
url = "https://github.com/DubskySteam/RapidRequest"
packaging = "jar"
licenses {
license {
name = "GNU Lesser General Public License v3.0"
url = "https://www.gnu.org/licenses/lgpl-3.0.html"
}
}
developers {
developer {
id = "dubskysteam"
name = "DubskySteam"
email = "[email protected]"
}
}
scm {
connection = "scm:git:git://github.com/dubskysteam/rapidrequest.git"
developerConnection = "scm:git:ssh://github.com/dubskysteam/rapidrequest.git"
url = "https://github.com/dubskysteam/rapidrequest"
}
}
}