-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
44 lines (37 loc) · 1.03 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
plugins {
`java-gradle-plugin`
id("com.gradle.plugin-publish") version "0.12.0"
kotlin("jvm") version "1.3.72"
}
group = "com.exploids"
version = "0.1.2"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("com.thoughtworks.qdox:qdox:2.0.0")
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
}
pluginBundle {
website = "https://github.com/exploids/plantuml-from-source"
vcsUrl = "https://github.com/exploids/plantuml-from-source"
description = "A plugin that generates PlantUML class diagrams from java source files"
tags = listOf("plantuml", "uml", "diagram")
plugins {
create("plantUmlFromSource") {
displayName = "PlantUML from source"
}
}
}
gradlePlugin {
plugins {
create("plantUmlFromSource") {
id = "com.exploids.plantumlfromsource"
implementationClass = "com.exploids.plantumlfromsource.gradle.PlantUmlPlugin"
}
}
}
tasks.test {
useJUnitPlatform()
}