-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpluginspecs.gradle
More file actions
172 lines (152 loc) · 6.47 KB
/
pluginspecs.gradle
File metadata and controls
172 lines (152 loc) · 6.47 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Generate plugin descriptors and specify plugin ids
gradlePlugin
{
plugins
{
quillAllPlugin
{
id = 'org.myire.quill.all'
implementationClass = 'org.myire.quill.QuillAllPlugin'
displayName = 'Quill All plugin'
description = 'Apply all quill plugins'
}
quillCorePlugin
{
id = 'org.myire.quill.core'
implementationClass = 'org.myire.quill.QuillCorePlugin'
displayName = 'Quill Core plugin'
description = 'Apply the core quill plugins'
}
quillCheckstylePlugin
{
id = 'org.myire.quill.checkstyle'
implementationClass = 'org.myire.quill.check.CheckstyleAdditionsPlugin'
displayName = 'Quill Checkstyle Additions plugin'
description = 'Configuration of and additional functionality for the standard Checkstyle plugin'
}
quillCpdPlugin
{
id = 'org.myire.quill.cpd'
implementationClass = 'org.myire.quill.cpd.CpdPlugin'
displayName = 'Quill CPD plugin'
description = 'Copy-paste detection based on the CPD tool'
}
quillDashboardPlugin
{
id = 'org.myire.quill.dashboard'
implementationClass = 'org.myire.quill.dashboard.DashboardPlugin'
displayName = 'Quill Reports Dashboard plugin'
description = 'One-page HTML report with a summary of other reports generated during a build'
}
quillIvyPlugin
{
id = 'org.myire.quill.ivy'
implementationClass = 'org.myire.quill.ivy.IvyImportPlugin'
displayName = 'Quill Ivy Import plugin'
description = 'Dependency and/or configuration import from an Apache Ivy module file'
}
quillJacocoPlugin
{
id = 'org.myire.quill.jacoco'
implementationClass = 'org.myire.quill.jacoco.JacocoAdditionsPlugin'
displayName = 'Quill JaCoCo Additions plugin'
description = 'Configuration of and additional functionality for the standard JaCoCo plugin'
}
quillJavaPlugin
{
id = 'org.myire.quill.java'
implementationClass = 'org.myire.quill.java.JavaAdditionsPlugin'
displayName = 'Quill Java Additions plugin'
description = 'Additional functionality for the standard Java tasks and additional Java related tasks'
}
quillJolPlugin
{
id = 'org.myire.quill.jol'
implementationClass = 'org.myire.quill.jol.JolPlugin'
displayName = 'Quill Java Object Layout plugin'
description = 'Java Object Layout report created with the jol-core library'
}
quillJunitPlugin
{
id = 'org.myire.quill.junit'
implementationClass = 'org.myire.quill.junit.JUnitAdditionsPlugin'
displayName = 'Quill Junit Additions plugin'
description = 'Configuration of and JUnit summary report for the standard Test task'
}
quillMavenPlugin
{
id = 'org.myire.quill.maven'
implementationClass = 'org.myire.quill.maven.MavenImportPlugin'
displayName = 'Quill Maven plugin'
description = 'Repository and/or dependency import from a Maven pom file'
}
quillMetaPlugin
{
id = 'org.myire.quill.meta'
implementationClass = 'org.myire.quill.meta.ProjectMetaDataPlugin'
displayName = 'Quill Project Metadata plugin'
description = 'Project extensions for specifying additional metadata and version properties'
}
quillModuleinfoPlugin
{
id = 'org.myire.quill.moduleinfo'
implementationClass = 'org.myire.quill.jigsaw.ModuleInfoPlugin'
displayName = 'Quill Module Info plugin'
description = 'Modular jar files for Java 8 projects'
}
quillPmdPlugin
{
id = 'org.myire.quill.pmd'
implementationClass = 'org.myire.quill.check.PmdAdditionsPlugin'
displayName = 'Quill PMD Additions plugin'
description = 'Configuration of and additional functionality for the standard PMD plugin'
}
quillPomPlugin
{
id = 'org.myire.quill.pom'
implementationClass = 'org.myire.quill.pom.PomPlugin'
displayName = 'Quill Pom plugin'
description = 'Pom file creation outside the context of uploading to a Maven repository'
}
quillScentPlugin
{
id = 'org.myire.quill.scent'
implementationClass = 'org.myire.quill.scent.ScentPlugin'
displayName = 'Quill Scent plugin'
description = 'Source code metrics report based on the Scent library'
}
quillSpotbugsPlugin
{
id = 'org.myire.quill.spotbugs'
implementationClass = 'org.myire.quill.check.SpotBugsAdditionsPlugin'
displayName = 'Quill Spotbugs Additions plugin'
description = 'Configuration of and additional functionality for the SpotBugs Gradle plugin'
}
}
}
// Declare all plugins that are part of the published artifact
pluginBundle
{
website = 'https://github.com/handmadecode/quill'
vcsUrl = 'https://github.com/handmadecode/quill'
description = 'A collection of Gradle plugins'
pluginTags = [
quillAllPlugin : ['quill', 'all'],
quillCorePlugin : ['quill', 'core'],
quillCheckstylePlugin : ['checkstyle', 'defaults', 'enhancements'],
quillCpdPlugin : ['cpd', 'verification', 'copy-paste-detection'],
quillDashboardPlugin : ['dashboard', 'report', 'summary'],
quillIvyPlugin : ['ivy', 'import', 'dependency', 'configuration'],
quillJacocoPlugin : ['jacoco', 'defaults', 'enhancements'],
quillJavaPlugin : ['java', 'defaults', 'enhancements'],
quillJolPlugin : ['jol', 'object', 'layout'],
quillJunitPlugin : ['junit', 'defaults', 'summary', 'report'],
quillMavenPlugin : ['maven', 'import', 'dependency', 'repository'],
quillMetaPlugin : ['project', 'metadata', 'semantic-version'],
quillModuleinfoPlugin : ['module-info'],
quillPmdPlugin : ['pmd', 'defaults', 'enhancements'],
quillPomPlugin : ['pom', 'pom-file'],
quillScentPlugin : ['scent', 'code', 'metrics'],
quillSpotbugsPlugin : ['spotbugs', 'defaults', 'enhancements']
]
}