-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
53 lines (46 loc) · 1.2 KB
/
build.gradle.kts
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
import org.gradle.kotlin.dsl.*
plugins {
`java-gradle-plugin`
`kotlin-dsl`
`maven-publish`
id("com.gradle.plugin-publish") version "0.9.9"
}
group = "com.tadaskay.gradle"
version = "1.0.2-dev"
gradlePlugin {
(plugins) {
"autoJooq" {
id = "com.tadaskay.auto-jooq"
implementationClass = "com.tadaskay.gradle.autojooq.AutoJooqPlugin"
}
}
}
pluginBundle {
tags = listOf("jOOQ", "liquibase", "PostgreSQL", "docker")
website = "https://github.com/tadaskay/gradle-auto-jooq-plugin"
vcsUrl = "https://github.com/tadaskay/gradle-auto-jooq-plugin"
(plugins) {
"autoJooq" {
id = "com.tadaskay.auto-jooq"
displayName = "Gradle Automated jOOQ Plugin"
description = "Gradle Automated jOOQ Plugin"
}
}
}
publishing {
repositories {
maven(url = "build/repository") {
name = "test"
}
}
}
repositories {
jcenter()
}
dependencies {
compile(kotlin("stdlib", "1.2.0"))
compile("com.spotify:docker-client:8.10.0")
compile("org.liquibase:liquibase-core:3.5.3")
compile("nu.studer:gradle-jooq-plugin:2.0.9")
runtime("org.postgresql:postgresql:42.1.4")
}