-
Notifications
You must be signed in to change notification settings - Fork 100
/
build.gradle
120 lines (101 loc) · 3.05 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
import java.time.Duration
plugins {
id 'java'
id 'pl.allegro.tech.build.axion-release' version '1.13.6'
id 'io.github.gradle-nexus.publish-plugin' version '1.0.0'
}
scmVersion {
tag {
prefix = 'json-avro-converter-'
}
versionCreator 'versionWithBranch'
hooks {
pre 'fileUpdate', [files: ['README.md'], pattern: { v, p -> /'$v'/ }, replacement: { v, p -> "'$v'" }]
pre 'commit'
}
}
nexusPublishing {
packageGroup = "tech.allegro"
repositories {
sonatype {
username = System.getenv("SONATYPE_USERNAME")
password = System.getenv("SONATYPE_PASSWORD")
}
}
transitionCheckOptions {
maxRetries.set(15)
delayBetween.set(Duration.ofMillis(5000))
}
}
sourceCompatibility = 1.8
allprojects {
project.group = 'tech.allegro.schema.json2avro'
project.version = scmVersion.version
}
subprojects {
apply plugin: 'java'
project.ext.versions = [
spock : '1.3-groovy-2.5',
groovy: '2.5.8'
]
repositories {
mavenCentral()
}
test {
testLogging {
exceptionFormat 'full'
}
}
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Xlint:unchecked', '-Xlint:deprecation']
}
}
configure(subprojects - project(':validator')) {
apply plugin: 'maven-publish'
apply plugin: 'signing'
java {
withJavadocJar()
withSourcesJar()
}
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = project.name
from(components.java)
pom {
name = project.name
description = 'JSON to Avro conversion tool designed to make migration to Avro easier'
url = 'https://github.com/allegro/json-avro-converter'
inceptionYear = '2016'
scm {
url = 'https://github.com/allegro/json-avro-converter'
connection = 'scm:[email protected]:allegro/json-avro-converter.git'
developerConnection = 'scm:[email protected]:allegro/json-avro-converter.git'
}
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'skylab'
name = 'Team Skylab'
}
}
}
}
}
}
if (System.getenv("GPG_KEY_ID")) {
signing {
useInMemoryPgpKeys(
System.getenv("GPG_KEY_ID"),
System.getenv("GPG_PRIVATE_KEY"),
System.getenv("GPG_PRIVATE_KEY_PASSWORD")
)
sign publishing.publications.mavenJava
}
}
}