forked from cosminpolifronie/gradle-plantuml-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (38 loc) · 1.15 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
45
plugins {
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.10.1'
id 'groovy'
id 'maven-publish'
}
group = 'io.freefair'
version = '1.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation 'net.sourceforge.plantuml:plantuml:1.2022.5'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
gradlePlugin {
plugins {
plantUmlPlugin {
id = 'io.freefair.plantuml'
displayName = 'Gradle PlantUML Plugin'
description = 'A simple plugin to render PlantUML files. ' +
'Takes a set of diagram files together with desired output files / formats ' +
'and renders them with PlantUML (http://plantuml.com/).'
implementationClass = 'io.freefair.plantuml.PlantUmlPlugin'
}
}
}
pluginBundle {
website = 'https://github.com/freefair/gradle-plantuml-plugin'
vcsUrl = 'https://github.com/freefair/gradle-plantuml-plugin'
tags = ['plantuml']
}
test {
useJUnitPlatform()
}