forked from jgitver/gradle-jgitver-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
65 lines (55 loc) · 1.46 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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url "https://jitpack.io"
}
mavenCentral()
}
dependencies {
classpath "gradle.plugin.se.bjurr.gitchangelog:git-changelog-gradle-plugin:1.50"
}
}
plugins {
id "com.gradle.plugin-publish" version "0.9.7"
id "fr.brouillard.oss.gradle.jgitver" version "0.7.0"
}
apply plugin: 'java'
apply plugin: 'maven' // for local tests
apply plugin: 'se.bjurr.gitchangelog.git-changelog-gradle-plugin'
group = 'fr.brouillard.oss.gradle'
jgitver {
useDirty true
}
repositories {
mavenCentral()
jcenter()
maven {
url "https://oss.sonatype.org/content/groups/public/"
}
}
pluginBundle {
website = 'https://github.com/jgitver/gradle-jgitver-plugin'
vcsUrl = 'https://github.com/jgitver/gradle-jgitver-plugin'
description = 'gradle plugin that defines automatically project version using jgitver'
tags = ['versioning', 'jgitver', 'git']
plugins {
jgitverPlugin {
id = 'fr.brouillard.oss.gradle.jgitver'
displayName = 'jgitver Gradle plugin'
}
}
mavenCoordinates {
groupId = "fr.brouillard.oss.gradle"
artifactId = "gradle-jgitver-plugin"
}
}
dependencies {
compile gradleApi()
compile "fr.brouillard.oss:jgitver:0.11.2"
}
task changelog(type: se.bjurr.gitchangelog.plugin.gradle.GitChangelogTask) {
file = new File("CHANGELOG.md");
}