1 | |
package org.apache.maven.plugin.install; |
2 | |
|
3 | |
import java.util.ArrayList; |
4 | |
import java.util.Iterator; |
5 | |
import java.util.List; |
6 | |
|
7 | |
import org.apache.maven.plugin.AbstractMojo; |
8 | |
import org.apache.maven.plugin.MojoExecutionException; |
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | 0 | public class HelpMojo |
19 | |
extends AbstractMojo |
20 | |
{ |
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
private boolean detail; |
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
private java.lang.String goal; |
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
private int lineLength; |
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | |
private int indentSize; |
48 | |
|
49 | |
|
50 | |
|
51 | |
public void execute() |
52 | |
throws MojoExecutionException |
53 | |
{ |
54 | 0 | if ( lineLength <= 0 ) |
55 | |
{ |
56 | 0 | getLog().warn( "The parameter 'lineLength' should be positive, using '80' as default." ); |
57 | 0 | lineLength = 80; |
58 | |
} |
59 | 0 | if ( indentSize <= 0 ) |
60 | |
{ |
61 | 0 | getLog().warn( "The parameter 'indentSize' should be positive, using '2' as default." ); |
62 | 0 | indentSize = 2; |
63 | |
} |
64 | |
|
65 | 0 | StringBuffer sb = new StringBuffer(); |
66 | |
|
67 | 0 | append( sb, "org.apache.maven.plugins:maven-install-plugin:2.3.1", 0 ); |
68 | 0 | append( sb, "", 0 ); |
69 | |
|
70 | 0 | append( sb, "Maven Install Plugin", 0 ); |
71 | 0 | append( sb, "Copies the project artifacts to the user\'s local repository.", 1 ); |
72 | 0 | append( sb, "", 0 ); |
73 | |
|
74 | 0 | if ( goal == null || goal.length() <= 0 ) |
75 | |
{ |
76 | 0 | append( sb, "This plugin has 3 goals:", 0 ); |
77 | 0 | append( sb, "", 0 ); |
78 | |
} |
79 | |
|
80 | 0 | if ( goal == null || goal.length() <= 0 || "help".equals( goal ) ) |
81 | |
{ |
82 | 0 | append( sb, "install:help", 0 ); |
83 | 0 | append( sb, "Display help information on maven-install-plugin.\nCall\n\u00a0\u00a0mvn\u00a0install:help\u00a0-Ddetail=true\u00a0-Dgoal=<goal-name>\nto display parameter details.", 1 ); |
84 | 0 | append( sb, "", 0 ); |
85 | 0 | if ( detail ) |
86 | |
{ |
87 | 0 | append( sb, "Available parameters:", 1 ); |
88 | 0 | append( sb, "", 0 ); |
89 | |
|
90 | 0 | append( sb, "detail (Default: false)", 2 ); |
91 | 0 | append( sb, "If true, display all settable properties for each goal.", 3 ); |
92 | 0 | append( sb, "", 0 ); |
93 | |
|
94 | 0 | append( sb, "goal", 2 ); |
95 | 0 | append( sb, "The name of the goal for which to show help. If unspecified, all goals will be displayed.", 3 ); |
96 | 0 | append( sb, "", 0 ); |
97 | |
|
98 | 0 | append( sb, "indentSize (Default: 2)", 2 ); |
99 | 0 | append( sb, "The number of spaces per indentation level, should be positive.", 3 ); |
100 | 0 | append( sb, "", 0 ); |
101 | |
|
102 | 0 | append( sb, "lineLength (Default: 80)", 2 ); |
103 | 0 | append( sb, "The maximum length of a display line, should be positive.", 3 ); |
104 | 0 | append( sb, "", 0 ); |
105 | |
} |
106 | |
} |
107 | |
|
108 | 0 | if ( goal == null || goal.length() <= 0 || "install".equals( goal ) ) |
109 | |
{ |
110 | 0 | append( sb, "install:install", 0 ); |
111 | 0 | append( sb, "Installs the project\'s main artifact in the local repository.", 1 ); |
112 | 0 | append( sb, "", 0 ); |
113 | 0 | if ( detail ) |
114 | |
{ |
115 | 0 | append( sb, "Available parameters:", 1 ); |
116 | 0 | append( sb, "", 0 ); |
117 | |
|
118 | 0 | append( sb, "createChecksum (Default: false)", 2 ); |
119 | 0 | append( sb, "Flag whether to create checksums (MD5, SHA-1) or not.", 3 ); |
120 | 0 | append( sb, "", 0 ); |
121 | |
|
122 | 0 | append( sb, "updateReleaseInfo (Default: false)", 2 ); |
123 | 0 | append( sb, "Whether to update the metadata to make the artifact a release version.", 3 ); |
124 | 0 | append( sb, "", 0 ); |
125 | |
} |
126 | |
} |
127 | |
|
128 | 0 | if ( goal == null || goal.length() <= 0 || "install-file".equals( goal ) ) |
129 | |
{ |
130 | 0 | append( sb, "install:install-file", 0 ); |
131 | 0 | append( sb, "Installs a file in the local repository.", 1 ); |
132 | 0 | append( sb, "", 0 ); |
133 | 0 | if ( detail ) |
134 | |
{ |
135 | 0 | append( sb, "Available parameters:", 1 ); |
136 | 0 | append( sb, "", 0 ); |
137 | |
|
138 | 0 | append( sb, "artifactId", 2 ); |
139 | 0 | append( sb, "ArtifactId of the artifact to be installed. Retrieved from POM file if one is specified.", 3 ); |
140 | 0 | append( sb, "", 0 ); |
141 | |
|
142 | 0 | append( sb, "classifier", 2 ); |
143 | 0 | append( sb, "Classifier type of the artifact to be installed. For example, \'sources\' or \'javadoc\'. Defaults to none which means this is the project\'s main artifact.", 3 ); |
144 | 0 | append( sb, "", 0 ); |
145 | |
|
146 | 0 | append( sb, "createChecksum (Default: false)", 2 ); |
147 | 0 | append( sb, "Flag whether to create checksums (MD5, SHA-1) or not.", 3 ); |
148 | 0 | append( sb, "", 0 ); |
149 | |
|
150 | 0 | append( sb, "file", 2 ); |
151 | 0 | append( sb, "The file to be installed in the local repository.", 3 ); |
152 | 0 | append( sb, "", 0 ); |
153 | |
|
154 | 0 | append( sb, "generatePom", 2 ); |
155 | 0 | append( sb, "Generate a minimal POM for the artifact if none is supplied via the parameter pomFile. Defaults to true if there is no existing POM in the local repository yet.", 3 ); |
156 | 0 | append( sb, "", 0 ); |
157 | |
|
158 | 0 | append( sb, "groupId", 2 ); |
159 | 0 | append( sb, "GroupId of the artifact to be installed. Retrieved from POM file if one is specified.", 3 ); |
160 | 0 | append( sb, "", 0 ); |
161 | |
|
162 | 0 | append( sb, "javadoc", 2 ); |
163 | 0 | append( sb, "The bundled API docs for the artifact.", 3 ); |
164 | 0 | append( sb, "", 0 ); |
165 | |
|
166 | 0 | append( sb, "localRepositoryPath", 2 ); |
167 | 0 | append( sb, "The path for a specific local repository directory. If not specified the local repository path configured in the Maven settings will be used.", 3 ); |
168 | 0 | append( sb, "", 0 ); |
169 | |
|
170 | 0 | append( sb, "packaging", 2 ); |
171 | 0 | append( sb, "Packaging type of the artifact to be installed. Retrieved from POM file if one is specified.", 3 ); |
172 | 0 | append( sb, "", 0 ); |
173 | |
|
174 | 0 | append( sb, "pomFile", 2 ); |
175 | 0 | append( sb, "Location of an existing POM file to be installed alongside the main artifact, given by the file parameter.", 3 ); |
176 | 0 | append( sb, "", 0 ); |
177 | |
|
178 | 0 | append( sb, "repositoryLayout (Default: default)", 2 ); |
179 | 0 | append( sb, "The type of remote repository layout to install to. Try legacy for a Maven 1.x-style repository layout.", 3 ); |
180 | 0 | append( sb, "", 0 ); |
181 | |
|
182 | 0 | append( sb, "sources", 2 ); |
183 | 0 | append( sb, "The bundled sources for the artifact.", 3 ); |
184 | 0 | append( sb, "", 0 ); |
185 | |
|
186 | 0 | append( sb, "updateReleaseInfo (Default: false)", 2 ); |
187 | 0 | append( sb, "Whether to update the metadata to make the artifact a release version.", 3 ); |
188 | 0 | append( sb, "", 0 ); |
189 | |
|
190 | 0 | append( sb, "version", 2 ); |
191 | 0 | append( sb, "Version of the artifact to be installed. Retrieved from POM file if one is specified.", 3 ); |
192 | 0 | append( sb, "", 0 ); |
193 | |
} |
194 | |
} |
195 | |
|
196 | 0 | if ( getLog().isInfoEnabled() ) |
197 | |
{ |
198 | 0 | getLog().info( sb.toString() ); |
199 | |
} |
200 | 0 | } |
201 | |
|
202 | |
|
203 | |
|
204 | |
|
205 | |
|
206 | |
|
207 | |
|
208 | |
|
209 | |
|
210 | |
|
211 | |
private static String repeat( String str, int repeat ) |
212 | |
{ |
213 | 0 | StringBuffer buffer = new StringBuffer( repeat * str.length() ); |
214 | |
|
215 | 0 | for ( int i = 0; i < repeat; i++ ) |
216 | |
{ |
217 | 0 | buffer.append( str ); |
218 | |
} |
219 | |
|
220 | 0 | return buffer.toString(); |
221 | |
} |
222 | |
|
223 | |
|
224 | |
|
225 | |
|
226 | |
|
227 | |
|
228 | |
|
229 | |
|
230 | |
|
231 | |
private void append( StringBuffer sb, String description, int indent ) |
232 | |
{ |
233 | 0 | for ( Iterator it = toLines( description, indent, indentSize, lineLength ).iterator(); it.hasNext(); ) |
234 | |
{ |
235 | 0 | sb.append( it.next().toString() ).append( '\n' ); |
236 | |
} |
237 | 0 | } |
238 | |
|
239 | |
|
240 | |
|
241 | |
|
242 | |
|
243 | |
|
244 | |
|
245 | |
|
246 | |
|
247 | |
|
248 | |
|
249 | |
private static List toLines( String text, int indent, int indentSize, int lineLength ) |
250 | |
{ |
251 | 0 | List lines = new ArrayList(); |
252 | |
|
253 | 0 | String ind = repeat( "\t", indent ); |
254 | 0 | String[] plainLines = text.split( "(\r\n)|(\r)|(\n)" ); |
255 | 0 | for ( int i = 0; i < plainLines.length; i++ ) |
256 | |
{ |
257 | 0 | toLines( lines, ind + plainLines[i], indentSize, lineLength ); |
258 | |
} |
259 | |
|
260 | 0 | return lines; |
261 | |
} |
262 | |
|
263 | |
|
264 | |
|
265 | |
|
266 | |
|
267 | |
|
268 | |
|
269 | |
|
270 | |
|
271 | |
private static void toLines( List lines, String line, int indentSize, int lineLength ) |
272 | |
{ |
273 | 0 | int lineIndent = getIndentLevel( line ); |
274 | 0 | StringBuffer buf = new StringBuffer( 256 ); |
275 | 0 | String[] tokens = line.split( " +" ); |
276 | 0 | for ( int i = 0; i < tokens.length; i++ ) |
277 | |
{ |
278 | 0 | String token = tokens[i]; |
279 | 0 | if ( i > 0 ) |
280 | |
{ |
281 | 0 | if ( buf.length() + token.length() >= lineLength ) |
282 | |
{ |
283 | 0 | lines.add( buf.toString() ); |
284 | 0 | buf.setLength( 0 ); |
285 | 0 | buf.append( repeat( " ", lineIndent * indentSize ) ); |
286 | |
} |
287 | |
else |
288 | |
{ |
289 | 0 | buf.append( ' ' ); |
290 | |
} |
291 | |
} |
292 | 0 | for ( int j = 0; j < token.length(); j++ ) |
293 | |
{ |
294 | 0 | char c = token.charAt( j ); |
295 | 0 | if ( c == '\t' ) |
296 | |
{ |
297 | 0 | buf.append( repeat( " ", indentSize - buf.length() % indentSize ) ); |
298 | |
} |
299 | 0 | else if ( c == '\u00A0' ) |
300 | |
{ |
301 | 0 | buf.append( ' ' ); |
302 | |
} |
303 | |
else |
304 | |
{ |
305 | 0 | buf.append( c ); |
306 | |
} |
307 | |
} |
308 | |
} |
309 | 0 | lines.add( buf.toString() ); |
310 | 0 | } |
311 | |
|
312 | |
|
313 | |
|
314 | |
|
315 | |
|
316 | |
|
317 | |
|
318 | |
private static int getIndentLevel( String line ) |
319 | |
{ |
320 | 0 | int level = 0; |
321 | 0 | for ( int i = 0; i < line.length() && line.charAt( i ) == '\t'; i++ ) |
322 | |
{ |
323 | 0 | level++; |
324 | |
} |
325 | 0 | for ( int i = level + 1; i <= level + 4 && i < line.length(); i++ ) |
326 | |
{ |
327 | 0 | if ( line.charAt( i ) == '\t' ) |
328 | |
{ |
329 | 0 | level++; |
330 | 0 | break; |
331 | |
} |
332 | |
} |
333 | 0 | return level; |
334 | |
} |
335 | |
} |