-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
207 lines (176 loc) · 5.04 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
// Copyright © 2018 DELL Inc. or its subsidiaries. All Rights Reserved.
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'com.github.hierynomus.license'
apply plugin: "io.spring.dependency-management"
apply plugin: 'org.sonarqube'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'signing'
apply plugin: 'maven'
//apply plugin: 'nebula.lint'
apply plugin: 'io.codearte.nexus-staging'
sourceCompatibility = 1.8
version = "${version}"
group = 'com.dell.isg.smi'
sourceSets {
main {
java {
srcDir 'src/main/gen-src'
}
}
}
buildscript {
repositories {
mavenLocal()
maven {
url "${artifactory_contextUrl}/libs-release"
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.spring.gradle:dependency-management-plugin:1.0.2.RELEASE"
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.4.15"
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
classpath "gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.13.1"
//classpath 'com.netflix.nebula:gradle-lint-plugin:latest.release'
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.11.0"
}
}
//gradleLint {
//rules = ['dependency-parentheses','overridden-dependency-version','duplicate-dependency-class', 'all-dependency','unused-dependency']
//}
if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
sonarqube {
properties {
property "sonar.projectName", "rackhd :: Wiseman"
property "sonar.projectKey", "${group}:wiseman"
}
}
jar {
manifest {
attributes 'Implementation-Title': 'wiseman',
'Implementation-Version': version
}
}
javadoc {
options {
encoding = 'windows-1251'
}
}
task snapshotJar(type: Jar){
baseName = archivesBaseName
version = '1.0-SNAPSHOT'
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
repositories {
mavenLocal()
maven { url "https://repo.maven.apache.org/maven2" }
}
dependencies {
compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.0'
compileOnly group: 'com.sun.xml.fastinfoset', name: 'FastInfoset', version: '1.2.13'
compile group: 'xerces', name: 'xercesImpl', version: '2.11.0'
}
test {
systemProperties 'property': 'value'
}
uploadArchives {
repositories {
flatDir {
dirs 'repos'
}
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.project {
artifactId = "wiseman"
packaging 'jar'
url 'https://www.github.com/rackhd/smi-lib-wiseman'
name 'Wiseman Jar'
description 'A Jar library for Wiseman, an open-source implementation of the WS-Management protocol.'
inceptionYear '2009'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
scm {
connection 'scm:git:git://www.github.com/rackhd/smi-lib-wiseman.git'
developerConnection 'scm:git:ssh://www.github.com/rackhd/smi-lib-wiseman.git'
url 'http://www.github.com/rackhd/smi-lib-wiseman'
}
developers {
developer {
id 'michaelsteven'
name 'Michael Hepfer'
email '[email protected]'
organization 'Dell EMC Inc.'
organizationUrl 'http://codedellemc.com'
}
}
}
}
}
}
artifacts {
archives javadocJar, sourcesJar, snapshotJar
}
signing {
required { gradle.taskGraph.hasTask("artifactoryPublish") }
sign configurations.archives
}
publishing {
publications {
mavenJava(MavenPublication){
artifact jar
artifact sourcesJar {
classifier "sources"
}
artifact javadocJar
}
}
}
license {
// header rootProject.file('license-template')
//includes(["**/*.java", "**/*.properties"])
strictCheck true
ignoreFailures true
//ext.year = Calendar.getInstance().get(Calendar.YEAR)
//ext.name = 'DELL Inc.'
}
artifactory {
contextUrl = "${artifactory_contextUrl}" //The base Artifactory URL if not overridden by the publisher/resolver
publish {
defaults{ publications ("mavenJava")}
repository {
// note: username and password being set by bamboo artifactory plugin
maven = true
}
}
resolve {
repository {
repoKey = 'libs-release'
maven = true
}
}
}