-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
175 lines (146 loc) · 3.83 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
description = "High-performance non-blocking, multi-endpoint connection pool"
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.javamodularity:moduleplugin:1.4.0"
}
}
apply plugin: "java"
apply plugin: "maven"
apply plugin: "signing"
apply plugin: "org.javamodularity.moduleplugin"
group = "com.github.akurilov"
version = "1.2.1"
sourceCompatibility = 11
targetCompatibility = 11
ext {
moduleName = "${group}.netty.connection.pool"
depVersion = [
netty: "4.1.25.Final",
]
}
repositories {
mavenCentral()
}
dependencies {
compile(
//"com.github.akurilov:java-commons:${depVersion.javaCommons}",
"io.netty:netty-common:${depVersion.netty}",
"io.netty:netty-transport:${depVersion.netty}",
)
testCompile(
"junit:junit:[4,)",
"io.netty:netty-transport-native-epoll:${depVersion.netty}:linux-x86_64",
)
}
jar {
manifest {
attributes(
"Automatic-Module-Name": moduleName,
"Implementation-Version": version,
"Implementation-Title": "$name"
)
}
}
test {
doFirst {
jvmArgs += [
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005",
"-XX:+HeapDumpOnOutOfMemoryError",
]
}
maxHeapSize "1g"
/*
systemProperty "com.sun.management.jmxremote", "true"
systemProperty "com.sun.management.jmxremote.port", "9010"
systemProperty "com.sun.management.jmxremote.rmi.port", "9010"
systemProperty "com.sun.management.jmxremote.local.only", "false"
systemProperty "com.sun.management.jmxremote.authenticate", "false"
systemProperty "com.sun.management.jmxremote.ssl", "false"
*/
testLogging {
events "passed", "skipped", "failed", "standardOut"
showExceptions = true
showStandardStreams = true
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
archiveName "$project.name-$classifier.$extension"
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
archiveName "$project.name-$classifier.$extension"
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
def ossrhUsername = project.hasProperty("ossrhUsername") ?
project.property("ossrhUsername") : null
def ossrhPassword = project.hasProperty("ossrhPassword") ?
project.property("ossrhPassword") : null
signing {
required {
gradle.taskGraph.hasTask("uploadArchives")
}
sign configurations.archives
}
// see http://central.sonatype.org/pages/gradle.html for details
uploadArchives {
// prevent the execution for empty (not leaf) subprojects and tests packages
if(project.name.contains("tests")) {
return
}
repositories {
mavenDeployer {
beforeDeployment {
MavenDeployment deployment -> signing.signPom(deployment)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom {
groupId = rootProject.group
name = "netty-connection-pool"
artifactId = name
project {
description = rootProject.description
url "https://github.com/akurilov/netty-connection-pool/wiki"
scm {
connection "https://github.com/akurilov/netty-connection-pool.git"
developerConnection "https://github.com/akurilov/netty-connection-pool.git"
url "https://github.com/akurilov/netty-connection-pool.git"
}
licenses {
license {
name "Apache 2.0 License"
url "https://github.com/akurilov/netty-connection-pool/wiki/License"
}
}
developers {
developer {
id "akurilov"
name "Andrey Kurilov"
email "[email protected]"
}
}
}
}
}
}
}
wrapper {
gradleVersion = "5.0"
}