-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (38 loc) · 1.17 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
plugins {
id "com.gradle.plugin-publish" version "1.0.0"
id "luisrjaeger.auto-versioning" version "1.0.6"
id 'groovy'
}
description 'Gradle plugin that create tasks to post messages on Slack Webhook'
group 'io.github.oleksiiparf.slack-webhook'
version autoVersion.versionName()
ext.pluginId = 'io.github.oleksiiparf.slack-webhook'
autoVersion {
versionCycle = 100
releaseNotesFileName = null
}
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation localGroovy()
implementation 'com.google.code.gson:gson:2.8.5'
}
// Specify plugin properties that apply to the whole publishing bundle (ie. all plugins in the current publication).
pluginBundle {
website = 'https://github.com/oleksiiparf/slack-webhook'
vcsUrl = 'https://github.com/oleksiiparf/slack-webhook'
description = project.description
tags = ['slack', 'webhook', 'message']
}
gradlePlugin {
plugins {
slackWebhookPlugin {
id = project.pluginId
description = project.description
displayName = 'Slack Webhook'
implementationClass = 'com.alessio.slack.SlackWebhookPlugin'
}
}
}