-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathbuild.gradle
225 lines (199 loc) · 6.46 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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/*
* Copyright 2016-2018 Dell Inc. or its subsidiaries. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
plugins {
id 'idea'
id 'eclipse'
id 'java-library'
id 'net.saliman.cobertura' version '4.0.0'
id 'distribution'
id 'signing'
id 'maven-publish'
id 'org.ajoberstar.git-publish' version '3.0.1' // javadocs -> gh-pages // 4.x requires Java 11
id 'nebula.release' version '16.0.0'
}
group 'com.emc.ecs'
description = 'NFS Client for Java - provides read/write access to data on NFS servers. The current implementation supports only NFS version 3.'
// name of the github project repository
ext.githubProjectName = 'nfs-client-java'
// URL to github project
ext.githubProjectUrl = "https://github.com/EMCECS/${githubProjectName}"
// git remote scm address
ext.githubScmUrl = "scm:git@github.com:EMCECS/${githubProjectName}.git"
// git remote https address
ext.githubRemoteUrl = "https://github.com/EMCECS/${githubProjectName}.git"
// license info
ext.licenseName = 'Apache License, Version 2.0'
ext.licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
// NOTE: PGP signing key should be configured with the following properties (in ~/.gradle/gradle.properties or on CLI):
// signingSecretKeyRingFile
// signingKeyId
// signingPass
ext."signing.secretKeyRingFile" = findProperty('signing.secretKeyRingFile') ?: findProperty('signingSecretKeyRingFile')
ext."signing.keyId" = findProperty('signing.keyId') ?: findProperty('signingKeyId')
ext."signing.password" = findProperty('signing.password') ?: findProperty('signingPass')
// NOTE: Maven Central credentials should be configured with the following properties:
// sonatypeUser
// sonatypePass
// NOTE: git repo credentials should be configured with the following properties:
// gitUsername
// gitPassword
System.setProperty('org.ajoberstar.grgit.auth.username', findProperty('gitUsername') ?: '')
System.setProperty('org.ajoberstar.grgit.auth.password', findProperty('gitPassword') ?: '')
defaultTasks 'distZip'
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation "io.netty:netty:3.10.6.Final"
implementation "org.apache.commons:commons-lang3:3.12.0"
implementation "org.slf4j:slf4j-api:1.7.36"
testImplementation "junit:junit:4.13.2"
testRuntimeOnly "org.slf4j:slf4j-simple:1.7.36"
}
allprojects {
configurations {
tools // specifies tool artifacts for the distribution (placed in the tools/ directory)
}
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
withJavadocJar()
withSourcesJar()
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
options.deprecation = true
}
jar {
doFirst {
manifest {
attributes 'Implementation-Version': project.version,
'Class-Path': configurations.runtimeClasspath.collect { it.getName() }.join(' ')
}
}
into("META-INF/maven/$project.group/$project.name") {
from { generatePomFileForMainLibraryPublication }
rename "pom-default.xml", "pom.xml"
}
}
javadoc {
options.encoding = 'UTF-8'
options.addStringOption('Xdoclint:none', '-quiet')
}
distributions {
main {
contents {
from jar
into('tools') {
from { allprojects.configurations.tools.artifacts.files }
}
from('.') {
include '*.txt'
}
into('3rd-party-licenses') {
from '3rd-party-licenses'
}
into('lib') {
from configurations.runtimeClasspath
}
}
}
}
publishing {
publications {
mainLibrary(MavenPublication) {
from components.java
pom {
name = project.name
description = project.description
url = githubProjectUrl
scm {
url = githubProjectUrl
connection = githubScmUrl
developerConnection = githubScmUrl
}
licenses {
license {
name = licenseName
url = licenseUrl
distribution = 'repo'
}
}
developers {
developer {
id = 'EMCECS'
name = 'Dell EMC ECS'
}
}
}
}
}
repositories {
maven {
url 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
credentials {
username findProperty('sonatypeUser')
password findProperty('sonatypePass')
}
}
}
}
signing {
sign publishing.publications.mainLibrary
}
ext.aggregatedDocsDir = "$buildDir/aggregatedDocs"
task aggregateDocs {
doLast {
if (project.hasProperty('release.stage') && project.ext['release.stage'] == 'final') {
copy {
from docsDir
into "${aggregatedDocsDir}/latest"
}
subprojects.each { p ->
copy {
from p.docsDir
into "${aggregatedDocsDir}/latest/${p.name}"
}
}
}
copy {
from docsDir
into "${aggregatedDocsDir}/${project.version}"
}
subprojects.each { p ->
copy {
from p.docsDir
into "${aggregatedDocsDir}/${project.version}/${p.name}"
}
}
}
}
tasks.aggregateDocs.dependsOn javadoc
aggregateDocs.dependsOn { subprojects.collect { it.tasks['javadoc'] } }
gitPublish {
repoUri = githubRemoteUrl
branch = 'gh-pages'
contents {
from aggregatedDocsDir
}
preserve { include '**/*' }
}
tasks.gitPublishPush.dependsOn aggregateDocs
tasks.release.dependsOn test, publish, gitPublishPush, distZip
clean {
delete aggregatedDocsDir
}