-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
53 lines (46 loc) · 1.21 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
import org.eclipse.jgit.api.errors.RefAlreadyExistsException
buildscript {
dependencies {
classpath "com.avast.gradle:gradle-docker-compose-plugin:0.16.12"
}
}
plugins {
id "at.zierler.yamlvalidator" version "1.5.0"
id "com.github.spotbugs" version "5.0.14" apply false
id "idea"
id 'org.ajoberstar.grgit' version '5.2.0'
id 'io.github.gradle-nexus.publish-plugin' version "1.1.0"
}
idea.project {
vcs = 'Git'
languageLevel = JavaVersion.VERSION_17
targetBytecodeVersion = JavaVersion.VERSION_17
}
yamlValidator {
searchPaths = ['.circleci/']
allowDuplicates = false
searchRecursive = true
}
task tagRelease {
doLast {
try {
grgit.tag.add {
name = "v$version"
message = "Release of ${version}"
}
grgit.push(refsOrSpecs: ["v$version"])
}
catch (RefAlreadyExistsException ignored) {
logger.warn("Tag v$version already exists.")
}
}
}
group = "com.transferwise.common"
nexusPublishing {
repositories {
sonatype {
username = System.getenv("SONATYPE_USER")
password = System.getenv("SONATYPE_PASSWORD")
}
}
}