-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.gradle
130 lines (107 loc) · 2.92 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
plugins {
id("se.patrikerdes.use-latest-versions") version "0.2.13"
id("com.github.ben-manes.versions") version "0.27.0"
id("java-gradle-plugin")
id "com.gradle.plugin-publish" version "0.11.0"
id "org.gradle.test-retry" version "1.3.1"
}
description = 'Gradle plugin that combines git tags and semantic versioning, and sets the gradle version property accordingly.'
apply plugin: "com.gradle.plugin-publish"
apply plugin: 'groovy'
sourceCompatibility = '1.8'
dependencies {
compile gradleApi()
compile localGroovy()
testImplementation gradleTestKit()
testImplementation platform("org.spockframework:spock-bom:2.0-groovy-2.5")
testImplementation "org.spockframework:spock-core"
}
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'wrapper'
wrapper {
gradleVersion = "5.0"
distributionType = Wrapper.DistributionType.ALL
}
repositories {
mavenCentral()
}
// the following sets the version property
plugins.apply com.cinnober.gradle.semver_git.SemverGitPlugin
group = 'com.cinnober.gradle'
test {
useJUnitPlatform()
retry {
maxRetries = 5
}
}
// -- Maven Central --
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
// -- Gradle Plugin Portal --
gradlePlugin {
plugins {
semver {
id = "com.cinnober.gradle.semver-git"
implementationClass = "com.cinnober.gradle.semver_git.SemverGitPlugin"
displayName = "semver-git"
}
}
}
pluginBundle {
website = 'https://github.com/cinnober/semver-git'
vcsUrl = 'https://github.com/cinnober/semver-git'
description = project.description
tags = ['git', 'semantic-versioning', 'semver']
}
publishing {
repositories {
maven {
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username ossrhUsername
password ossrhPassword
}
}
}
}
publishing.publications.whenObjectAdded {
it.pom {
url = 'https://github.com/cinnober/semver-git'
description = project.description
scm {
connection = 'scm:git:https://github.com/cinnober/semver-git'
developerConnection = 'scm:git:https://github.com/cinnober/semver-git'
url = 'https://github.com/cinnober/semver-git'
}
licenses {
license {
name = 'MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id = 'mikael.brannstrom'
name = 'Mikael Brännström'
email = '[email protected]'
}
developer {
id = 'deepy'
name = 'Alex Nordlund'
email = '[email protected]'
}
}
}
}