-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
136 lines (117 loc) · 3.32 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.20.0'
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
}
}
plugins {
id 'java'
id 'jacoco'
id "com.github.spotbugs" version "2.0.0"
id 'eclipse'
id 'idea'
id 'maven'
id 'signing'
id 'org.inferred.processors' version '2.2.0'
id 'com.palantir.circle.style' version '1.1.4'
id 'net.researchgate.release' version '2.8.0'
}
apply plugin: 'com.bmuschko.nexus'
apply plugin: 'io.codearte.nexus-staging'
ext.nexusUsername = "$System.env.NEXUS_USER"
ext.nexusPassword = "$System.env.NEXUS_PASSWORD"
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
group = 'io.github.clormor'
ext.'signing.keyId' = "$System.env.NEXUS_KEY_ID"
ext.'signing.secretKeyRingFile' = "$System.env.NEXUS_KEY_FILE"
ext.'signing.password' = "$System.env.NEXUS_KEY_PASSWORD"
repositories {
mavenCentral()
}
dependencies {
compile "com.google.guava:guava:$guavaVersion"
compile "com.github.spotbugs:spotbugs-annotations:$spotbugsVersion"
implementation "org.immutables:value-annotations:$immutablesVersion"
annotationProcessor "org.immutables:value:$immutablesVersion"
testCompile "junit:junit:$junitVersion"
}
idea {
module {
inheritOutputDirs = true
downloadJavadoc = true
downloadSources = true
scopes.PROVIDED.plus += [configurations.compileOnly]
iml {
whenMerged { module ->
def compileDeps = module.dependencies.findAll { it.scope == 'COMPILE' }
compileDeps*.exported = true
}
}
}
}
// enable coverage xml reports for codeclimate
jacocoTestReport {
reports {
xml.enabled true
}
}
jacocoTestCoverageVerification {
violationRules {
rule {
limit {
// set this to a threshold you wish to enforce
minimum = 0.8
}
}
}
}
// run coverage as part of the build
check.dependsOn jacocoTestReport
check.dependsOn jacocoTestCoverageVerification
javadoc {
if(JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}
release {
git {
// only perform releases on develop
requireBranch = 'develop'
// push releases to a separate release branch
pushReleaseVersionBranch = 'release'
}
}
nexusStaging {
delayBetweenRetriesInMillis = 5000
}
modifyPom {
project {
name 'Hacker Rank Java Solutions'
description 'Contains java solutions for Hacker Rank problems'
url 'https://github.com/clormor/hacker-rank-java'
inceptionYear '2019'
scm {
url 'https://github.com/clormor/hacker-rank-java'
connection '[email protected]:clormor/hacker-rank-java.git'
developerConnection '[email protected]:clormor/hacker-rank-java.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'clormor'
name 'Chris Lormor'
email '[email protected]'
}
}
}
}