-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle.kts
46 lines (39 loc) · 1.1 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
plugins {
`kotlin-dsl`
id("com.gradle.plugin-publish") version "0.16.0"
id("maven-publish")
id("org.jmailen.kotlinter") version "3.6.0"
}
group = "com.github.fhermansson"
version = "1.1.5"
repositories {
mavenCentral()
}
dependencies {
implementation("org.assertj:assertj-assertions-generator:2.2.1") {
exclude(module = "logback-classic")
}
}
gradlePlugin {
plugins {
create("assertjGenerator") {
id = "com.github.fhermansson.assertj-generator"
implementationClass = "com.github.fhermansson.gradle.assertj.plugin.AssertjGeneratorPlugin"
}
}
}
pluginBundle {
website = "https://github.com/fhermansson/assertj-generator-gradle-plugin"
vcsUrl = "https://github.com/fhermansson/assertj-generator-gradle-plugin"
description = "Generate Assertj assertion classes."
tags = listOf("code-generation", "assertj", "java")
(plugins) {
"assertjGenerator" {
displayName = "Assertj Generator plugin"
}
}
}
tasks.wrapper {
distributionType = Wrapper.DistributionType.ALL
gradleVersion = "7.2"
}