-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
178 lines (144 loc) · 5.01 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
buildscript {
ext {
testJacksonVersions = ['2.2.0', '2.3.0', '2.4.0', '2.5.0', '2.6.0', '2.7.0', '2.8.0']
// external dependency versions
groovyVersion = '2.4.5'
gradleVersion = '2.14.1'
jacksonVersion = "[${testJacksonVersions.first()},)"
licensePluginVersion = '0.13.1'
releasePluginVersion = '2.4.0'
spockVersion = '1.0-groovy-2.4'
// external dependencies
groovy = "org.codehaus.groovy:groovy-all:${groovyVersion}"
jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
spockCore = "org.spockframework:spock-core:${spockVersion}"
}
repositories {
mavenCentral()
jcenter()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath "gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:${licensePluginVersion}"
classpath "net.researchgate:gradle-release:${releasePluginVersion}"
}
}
task wrapper(type: Wrapper) {
gradleVersion = this.gradleVersion
}
group = 'com.github.jonpeterson'
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'com.github.hierynomus.license'
apply plugin: 'net.researchgate.release'
apply plugin: 'maven'
apply plugin: 'signing'
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenCentral()
}
dependencies {
compile jacksonDatabind
testCompile groovy
testCompile spockCore
}
license {
include '**/*.java'
include '**/*.groovy'
mapping {
java = 'SLASHSTAR_STYLE'
groovy = 'SLASHSTAR_STYLE'
}
}
// don't run tests with default test task
test.excludes = ['**/*']
// dynamically set up test executions for each version of Jackson
testJacksonVersions.each { version ->
def safeVersion = version.replaceAll('\\.', '_')
configurations {
"testJackson${safeVersion}Compile" {
extendsFrom testCompile
}
"testJackson${safeVersion}Runtime" {
extendsFrom testRuntime
resolutionStrategy {
force jacksonDatabind.replace(jacksonVersion, version)
}
}
}
sourceSets {
it."testJackson$safeVersion" {
compileClasspath += sourceSets.main.output + sourceSets.test.output
runtimeClasspath += sourceSets.main.output + sourceSets.test.output
}
}
task "testJackson$safeVersion"(type: Test) {
testClassesDir = sourceSets.test.output.classesDir
classpath = sourceSets."testJackson$safeVersion".runtimeClasspath
}
test.dependsOn "testJackson$safeVersion"
}
task javadocJar(type: Jar) {
dependsOn javadoc
classifier = 'javadoc'
from "$buildDir/javadoc"
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar
archives sourcesJar
}
signing {
required { gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
uploadArchives {
def ossrhUsername = project.hasProperty('ossrhUsername') ? project.property('ossrhUsername') : null
def ossrhPassword = project.hasProperty('ossrhPassword') ? project.property('ossrhPassword') : null
doFirst {
if(!ossrhUsername || !ossrhPassword)
throw new MissingPropertyException('ossrhUsername or ossrhPassword not set')
}
repositories {
mavenDeployer {
beforeDeployment { 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 {
name 'Jackson Model Versioning Module'
packaging 'jar'
description 'Jackson 2.x module for handling versioning of models.'
url 'https://github.com/jonpeterson/jackson-module-model-versioning'
scm {
connection 'scm:git:git://github.com/jonpeterson/jackson-module-model-versioning.git'
developerConnection 'scm:git:[email protected]:jonpeterson/jackson-module-model-versioning.git'
url 'https://github.com/jonpeterson/jackson-module-model-versioning'
}
licenses {
license {
name 'MIT License'
url 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id 'jonpeterson'
name 'Jonathan Peterson'
email '[email protected]'
url 'https://github.com/jonpeterson'
}
}
}
}
}
}