forked from savvasdalkitsis/module-dependency-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (35 loc) · 1.14 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
plugins {
id 'java-gradle-plugin'
id 'groovy'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.12.0'
}
group 'com.savvasdalkitsis'
version '0.10'
pluginBundle {
website = 'https://github.com/savvasdalkitsis/'
vcsUrl = 'https://github.com/savvasdalkitsis/module-dependency-graph'
tags = ['module', 'graph', 'dependency']
}
gradlePlugin {
plugins {
moduleDepsGraph {
id = 'com.savvasdalkitsis.module-dependency-graph'
displayName = 'Generate module dependency graphs for your project'
description = 'This plugin adds a new task (graphModules) to your project which will create an image with the graph of your module dependency tree'
implementationClass = 'com.savvasdalkitsis.module.deps.graph.ModuleDependencyGraphPlugin'
}
}
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
publishing {
publications {
pluginPublication (MavenPublication) {
from components.java
groupId project.group
artifactId "module-dependency-graph"
version project.version
}
}
}