forked from domix/diable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
151 lines (126 loc) · 4.14 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
import java.text.SimpleDateFormat
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.4.0'
}
}
plugins {
id 'net.researchgate.release' version '2.1.2'
}
apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'jacoco'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'com.github.kt3k.coveralls'
group = project.groupId
sourceCompatibility = project.javaVersion
targetCompatibility = project.javaVersion
dependencies {
compile "org.codehaus.groovy:groovy-all:${project.groovyVersion}"
compile 'org.springframework:springloaded:1.2.3.RELEASE'
testCompile "org.spockframework:spock-core:${project.spockVersion}"
}
repositories {
jcenter()
}
version = project.version
Date buildTimeAndDate = new Date()
ext {
buildDate = new SimpleDateFormat('dd-MMM-yyyy').format(buildTimeAndDate)
buildTime = new SimpleDateFormat('hh:mm aa').format(buildTimeAndDate)
}
def jarManifestAttributes = [
'Built-By' : System.properties['user.name'],
'Created-By': System.properties['java.version'] + ' (' + System.properties['java.vendor'] + ' ' + System.getProperty("java.vm.version") + ")",
'Build-Date': buildDate,
'Build-Time': buildTime]
jar {
manifest {
attributes(jarManifestAttributes)
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
it.pom.getRuntimeDependencies().clear()
artifact sourcesJar
pom.withXml {
def root = asNode()
root.appendNode('name', project.name)
root.appendNode('description', project.description)
root.appendNode('url', 'https://github.com/domix/diable')
root.appendNode('inceptionYear', '2015')
def scm = root.appendNode('scm')
scm.appendNode('url', 'https://github.com/domix/diable')
scm.appendNode('connection', 'scm:https://[email protected]/domix/diable.git')
scm.appendNode('developerConnection', 'scm:[email protected]:domix/diable.git')
def license = root.appendNode('licenses').appendNode('license')
license.appendNode('name', 'The Apache Software License, Version 2.0')
license.appendNode('url', 'http://www.apache.org/licenses/LICENSE-2.0.txt')
license.appendNode('distribution', 'repo')
def developers = root.appendNode('developers')
def domix = developers.appendNode('developer')
domix.appendNode('id', 'domix')
domix.appendNode('name', 'Domingo Suarez Torres')
domix.appendNode('email', '[email protected]')
}
}
}
}
bintray {
user = project.hasProperty('bintrayUsername') ? bintrayUsername : ''
key = project.hasProperty('bintrayApiKey') ? bintrayApiKey : ''
publications = ['mavenJava']
dryRun = false //Whether to run this as dry-run, without deploying
publish = true //If version should be auto published after an upload
pkg {
repo = 'oss'
userOrg = 'domix'
name = project.name
desc = project.description
websiteUrl = 'https://github.com/domix/diable'
issueTrackerUrl = 'https://github.com/domix/diable/issues'
vcsUrl = 'https://github.com/domix/diable.git'
licenses = ['Apache-2.0']
labels = ['groovy', 'ast', 'di']
publicDownloadNumbers = true
attributes = [:]
//Optional version descriptor
version {
name = project.version
desc = project.description
gpg {
sign = project.hasProperty('bintrayGpgPassphrase')
passphrase = project.hasProperty('bintrayGpgPassphrase') ? bintrayGpgPassphrase : ''
}
mavenCentralSync {
sync = false
user = ''
password = ''
close = '1'
}
}
}
}
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}
createReleaseTag.dependsOn bintrayUpload