-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (39 loc) · 994 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
42
43
44
45
46
47
48
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'groovy'
id "com.gradle.plugin-publish" version "0.10.1"
id "java-gradle-plugin"
}
sourceCompatibility = 1.8
version = "1.0"
group = "com.vast.gradle"
repositories {
jcenter()
}
dependencies {
compile group: 'org.yaml', name: 'snakeyaml', version: '1.25'
}
gradlePlugin {
plugins {
liquibase {
id = 'vast.gradle-plugin-liquibase'
implementationClass = 'com.vast.gradle.plugin.liquibase.ChangelogBuilderPlugin'
}
}
}
pluginBundle {
website = 'https://github.com/vastik/gradle-plugin-liquibase'
vcsUrl = 'https://github.com/vastik/gradle-plugin-liquibase'
description = 'Creates changelog.yml file from include directory'
tags = ['liquibase', 'database']
plugins {
liquibase {
// id is captured from java-gradle-plugin configuration
displayName = 'Gradle liquibase plugin'
}
}
}