-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
77 lines (69 loc) · 2.45 KB
/
build.gradle.kts
File metadata and controls
77 lines (69 loc) · 2.45 KB
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
plugins {
id("libnetty.java-library-conventions")
id("libnetty.publish-conventions")
}
dependencies {
implementation("org.slf4j:slf4j-api")
api("io.netty:netty-handler")
implementation("io.netty:netty-pkitesting")
compileOnly("io.netty:netty-codec-http2")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.apache.logging.log4j:log4j-slf4j2-impl")
testImplementation("org.apache.logging.log4j:log4j-core")
}
description = "libnetty/Handler"
tasks.test {
// Use junit platform for unit tests.
useJUnitPlatform()
// Fix for java 17
jvmArgs = listOf(
"--add-exports=java.base/sun.security.x509=ALL-UNNAMED",
"--add-exports=java.base/sun.security.pkcs=ALL-UNNAMED",
)
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
versionMapping {
usage("java-api") {
fromResolutionOf("runtimeClasspath")
}
usage("java-runtime") {
fromResolutionResult()
}
}
pom {
name.set("libnetty/Handler")
description.set("A set of some useful libraries based on netty4.2.x.")
url.set("https://github.com/fmjsjx/libnetty")
licenses {
license {
name.set("MIT License")
url.set("https://opensource.org/licenses/MIT")
}
}
developers {
developer {
id.set("fmjsjx")
name.set("MJ Fang")
email.set("fmjsjx@163.com")
url.set("https://github.com/fmjsjx")
organization.set("fmjsjx")
organizationUrl.set("https://github.com/fmjsjx")
}
}
scm {
url.set("https://github.com/fmjsjx/libnetty")
connection.set("scm:git:https://github.com/fmjsjx/libnetty.git")
developerConnection.set("scm:git:https://github.com/fmjsjx/libnetty.git")
}
}
}
}
}
signing {
sign(publishing.publications["mavenJava"])
}