-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (35 loc) · 890 Bytes
/
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
plugins {
id 'groovy'
id 'java-gradle-plugin'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.15.0'
}
group = 'com.hyas'
sourceCompatibility = '1.8'
version = '1.0.3-SNAPSHOT'
repositories {
jcenter()
}
dependencies {
implementation 'external.atlassian.jgitflow:jgit-flow-core:1.0-m5.1'
implementation 'com.github.zafarkhaja:java-semver:0.9.0'
}
gradlePlugin {
plugins {
hyasGitflow {
id = 'com.hyas.gitflow'
implementationClass = 'com.hyas.plugins.gitflow.GitflowPlugin'
}
}
}
pluginBundle {
website = 'https://github.com/hyasinfosec/gitflow-gradle-plugin'
vcsUrl = 'https://github.com/hyasinfosec/gitflow-gradle-plugin'
description = 'Gradle plugin for gitflow operations.'
tags = ['gitflow']
plugins {
hyasGitflow {
displayName = 'HYAS gradle gitflow plugin'
}
}
}