1 | |
package org.apache.maven.plugin.resources; |
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
import org.apache.maven.execution.MavenSession; |
23 | |
import org.apache.maven.model.Resource; |
24 | |
import org.apache.maven.plugin.AbstractMojo; |
25 | |
import org.apache.maven.plugin.MojoExecutionException; |
26 | |
import org.apache.maven.plugins.annotations.Component; |
27 | |
import org.apache.maven.plugins.annotations.LifecyclePhase; |
28 | |
import org.apache.maven.plugins.annotations.Mojo; |
29 | |
import org.apache.maven.plugins.annotations.Parameter; |
30 | |
import org.apache.maven.project.MavenProject; |
31 | |
import org.apache.maven.shared.filtering.MavenFilteringException; |
32 | |
import org.apache.maven.shared.filtering.MavenResourcesExecution; |
33 | |
import org.apache.maven.shared.filtering.MavenResourcesFiltering; |
34 | |
import org.codehaus.plexus.PlexusConstants; |
35 | |
import org.codehaus.plexus.PlexusContainer; |
36 | |
import org.codehaus.plexus.component.repository.exception.ComponentLookupException; |
37 | |
import org.codehaus.plexus.context.Context; |
38 | |
import org.codehaus.plexus.context.ContextException; |
39 | |
import org.codehaus.plexus.personality.plexus.lifecycle.phase.Contextualizable; |
40 | |
import org.codehaus.plexus.util.ReaderFactory; |
41 | |
import org.codehaus.plexus.util.StringUtils; |
42 | |
|
43 | |
import java.io.File; |
44 | |
import java.util.ArrayList; |
45 | |
import java.util.Collection; |
46 | |
import java.util.Collections; |
47 | |
import java.util.Iterator; |
48 | |
import java.util.LinkedHashSet; |
49 | |
import java.util.List; |
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
|
60 | |
@Mojo( name = "resources", defaultPhase = LifecyclePhase.PROCESS_RESOURCES, threadSafe = true ) |
61 | 19 | public class ResourcesMojo |
62 | |
extends AbstractMojo |
63 | |
implements Contextualizable |
64 | |
{ |
65 | |
|
66 | |
|
67 | |
|
68 | |
|
69 | |
@Parameter( property = "encoding", defaultValue = "${project.build.sourceEncoding}" ) |
70 | |
protected String encoding; |
71 | |
|
72 | |
|
73 | |
|
74 | |
|
75 | |
@Parameter( defaultValue = "${project.build.outputDirectory}", required = true ) |
76 | |
private File outputDirectory; |
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
@Parameter( defaultValue = "${project.resources}", required = true, readonly = true ) |
82 | |
private List<Resource> resources; |
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | |
@Parameter( defaultValue = "${project}", required = true, readonly = true ) |
88 | |
protected MavenProject project; |
89 | |
|
90 | |
|
91 | |
|
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
|
98 | |
@Parameter( defaultValue = "${project.build.filters}", readonly = true ) |
99 | |
protected List<String> buildFilters; |
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
|
106 | |
|
107 | |
|
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
@Parameter |
114 | |
protected List<String> filters; |
115 | |
|
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | |
|
121 | |
|
122 | |
|
123 | |
|
124 | |
@Parameter( defaultValue = "true" ) |
125 | |
protected boolean useBuildFilters; |
126 | |
|
127 | |
|
128 | |
|
129 | |
|
130 | |
@Component( role = MavenResourcesFiltering.class, hint = "default" ) |
131 | |
protected MavenResourcesFiltering mavenResourcesFiltering; |
132 | |
|
133 | |
|
134 | |
|
135 | |
|
136 | |
@Parameter( defaultValue = "${session}", required = true, readonly = true ) |
137 | |
protected MavenSession session; |
138 | |
|
139 | |
|
140 | |
|
141 | |
|
142 | |
|
143 | |
|
144 | |
|
145 | |
@Parameter( property = "maven.resources.escapeString" ) |
146 | |
protected String escapeString; |
147 | |
|
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
@Parameter( property = "maven.resources.overwrite", defaultValue = "false" ) |
154 | |
private boolean overwrite; |
155 | |
|
156 | |
|
157 | |
|
158 | |
|
159 | |
|
160 | |
|
161 | |
@Parameter( property = "maven.resources.includeEmptyDirs", defaultValue = "false" ) |
162 | |
protected boolean includeEmptyDirs; |
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
|
169 | |
@Parameter |
170 | |
protected List<String> nonFilteredFileExtensions; |
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
|
177 | |
@Parameter( property = "maven.resources.escapeWindowsPaths", defaultValue = "true" ) |
178 | |
protected boolean escapeWindowsPaths; |
179 | |
|
180 | |
|
181 | |
|
182 | |
|
183 | |
|
184 | |
|
185 | |
|
186 | |
|
187 | |
|
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
|
193 | |
|
194 | |
|
195 | |
|
196 | |
|
197 | |
|
198 | |
|
199 | |
@Parameter |
200 | |
protected List<String> delimiters; |
201 | |
|
202 | |
|
203 | |
|
204 | |
|
205 | |
@Parameter( defaultValue = "true" ) |
206 | |
protected boolean useDefaultDelimiters; |
207 | |
|
208 | |
|
209 | |
|
210 | |
|
211 | |
|
212 | |
|
213 | |
|
214 | |
|
215 | |
|
216 | |
@Parameter |
217 | |
private List<String> mavenFilteringHints; |
218 | |
|
219 | |
|
220 | |
|
221 | |
|
222 | |
private PlexusContainer plexusContainer; |
223 | |
|
224 | |
|
225 | |
|
226 | |
|
227 | 19 | private List<MavenResourcesFiltering> mavenFilteringComponents = new ArrayList<MavenResourcesFiltering>(); |
228 | |
|
229 | |
|
230 | |
|
231 | |
|
232 | |
|
233 | |
|
234 | |
@Parameter( property = "maven.resources.supportMultiLineFiltering", defaultValue = "false" ) |
235 | |
private boolean supportMultiLineFiltering; |
236 | |
|
237 | |
public void contextualize( Context context ) |
238 | |
throws ContextException |
239 | |
{ |
240 | 19 | plexusContainer = (PlexusContainer) context.get( PlexusConstants.PLEXUS_KEY ); |
241 | 19 | } |
242 | |
|
243 | |
public void execute() |
244 | |
throws MojoExecutionException |
245 | |
{ |
246 | |
try |
247 | |
{ |
248 | |
|
249 | 17 | if ( StringUtils.isEmpty( encoding ) && isFilteringEnabled( getResources() ) ) |
250 | |
{ |
251 | 0 | getLog().warn( "File encoding has not been set, using platform encoding " + ReaderFactory.FILE_ENCODING |
252 | |
+ ", i.e. build is platform dependent!" ); |
253 | |
} |
254 | |
|
255 | 17 | List filters = getCombinedFiltersList(); |
256 | |
|
257 | 17 | MavenResourcesExecution mavenResourcesExecution = |
258 | |
new MavenResourcesExecution( getResources(), getOutputDirectory(), project, encoding, filters, |
259 | |
Collections.<String>emptyList(), session ); |
260 | |
|
261 | 17 | mavenResourcesExecution.setEscapeWindowsPaths( escapeWindowsPaths ); |
262 | |
|
263 | |
|
264 | |
|
265 | 17 | mavenResourcesExecution.setInjectProjectBuildFilters( false ); |
266 | |
|
267 | 17 | mavenResourcesExecution.setEscapeString( escapeString ); |
268 | 17 | mavenResourcesExecution.setOverwrite( overwrite ); |
269 | 17 | mavenResourcesExecution.setIncludeEmptyDirs( includeEmptyDirs ); |
270 | 17 | mavenResourcesExecution.setSupportMultiLineFiltering( supportMultiLineFiltering ); |
271 | |
|
272 | |
|
273 | 17 | if ( delimiters != null && !delimiters.isEmpty() ) |
274 | |
{ |
275 | 0 | LinkedHashSet<String> delims = new LinkedHashSet<String>(); |
276 | 0 | if ( useDefaultDelimiters ) |
277 | |
{ |
278 | 0 | delims.addAll( mavenResourcesExecution.getDelimiters() ); |
279 | |
} |
280 | |
|
281 | 0 | for ( String delim : delimiters ) |
282 | |
{ |
283 | 0 | if ( delim == null ) |
284 | |
{ |
285 | |
|
286 | 0 | delims.add( "${*}" ); |
287 | |
} |
288 | |
else |
289 | |
{ |
290 | 0 | delims.add( delim ); |
291 | |
} |
292 | |
} |
293 | |
|
294 | 0 | mavenResourcesExecution.setDelimiters( delims ); |
295 | |
} |
296 | |
|
297 | 17 | if ( nonFilteredFileExtensions != null ) |
298 | |
{ |
299 | 0 | mavenResourcesExecution.setNonFilteredFileExtensions( nonFilteredFileExtensions ); |
300 | |
} |
301 | 17 | mavenResourcesFiltering.filterResources( mavenResourcesExecution ); |
302 | |
|
303 | 17 | executeUserFilterComponents( mavenResourcesExecution ); |
304 | |
} |
305 | 0 | catch ( MavenFilteringException e ) |
306 | |
{ |
307 | 0 | throw new MojoExecutionException( e.getMessage(), e ); |
308 | 17 | } |
309 | 17 | } |
310 | |
|
311 | |
|
312 | |
|
313 | |
|
314 | |
protected void executeUserFilterComponents( MavenResourcesExecution mavenResourcesExecution ) |
315 | |
throws MojoExecutionException, MavenFilteringException |
316 | |
{ |
317 | |
|
318 | 17 | if ( mavenFilteringHints != null ) |
319 | |
{ |
320 | 0 | for ( Iterator ite = mavenFilteringHints.iterator(); ite.hasNext(); ) |
321 | |
{ |
322 | 0 | String hint = (String) ite.next(); |
323 | |
try |
324 | |
{ |
325 | 0 | mavenFilteringComponents.add( |
326 | |
(MavenResourcesFiltering) plexusContainer.lookup( MavenResourcesFiltering.class.getName(), |
327 | |
hint ) ); |
328 | |
} |
329 | 0 | catch ( ComponentLookupException e ) |
330 | |
{ |
331 | 0 | throw new MojoExecutionException( e.getMessage(), e ); |
332 | 0 | } |
333 | 0 | } |
334 | |
} |
335 | |
else |
336 | |
{ |
337 | 17 | getLog().debug( "no use filter components" ); |
338 | |
} |
339 | |
|
340 | 17 | if ( mavenFilteringComponents != null && !mavenFilteringComponents.isEmpty() ) |
341 | |
{ |
342 | 0 | getLog().debug( "execute user filters" ); |
343 | 0 | for ( MavenResourcesFiltering filter : mavenFilteringComponents ) |
344 | |
{ |
345 | 0 | filter.filterResources( mavenResourcesExecution ); |
346 | |
} |
347 | |
} |
348 | 17 | } |
349 | |
|
350 | |
protected List<String> getCombinedFiltersList() |
351 | |
{ |
352 | 17 | if ( filters == null || filters.isEmpty() ) |
353 | |
{ |
354 | 15 | return useBuildFilters ? buildFilters : null; |
355 | |
} |
356 | |
else |
357 | |
{ |
358 | 2 | List<String> result = new ArrayList<String>(); |
359 | |
|
360 | 2 | if ( useBuildFilters && buildFilters != null && !buildFilters.isEmpty() ) |
361 | |
{ |
362 | 1 | result.addAll( buildFilters ); |
363 | |
} |
364 | |
|
365 | 2 | result.addAll( filters ); |
366 | |
|
367 | 2 | return result; |
368 | |
} |
369 | |
} |
370 | |
|
371 | |
|
372 | |
|
373 | |
|
374 | |
|
375 | |
|
376 | |
|
377 | |
private boolean isFilteringEnabled( Collection<Resource> resources ) |
378 | |
{ |
379 | 0 | if ( resources != null ) |
380 | |
{ |
381 | 0 | for ( Resource resource : resources ) |
382 | |
{ |
383 | 0 | if ( resource.isFiltering() ) |
384 | |
{ |
385 | 0 | return true; |
386 | |
} |
387 | |
} |
388 | |
} |
389 | 0 | return false; |
390 | |
} |
391 | |
|
392 | |
public List<Resource> getResources() |
393 | |
{ |
394 | 16 | return resources; |
395 | |
} |
396 | |
|
397 | |
public void setResources( List<Resource> resources ) |
398 | |
{ |
399 | 1 | this.resources = resources; |
400 | 1 | } |
401 | |
|
402 | |
public File getOutputDirectory() |
403 | |
{ |
404 | 16 | return outputDirectory; |
405 | |
} |
406 | |
|
407 | |
public void setOutputDirectory( File outputDirectory ) |
408 | |
{ |
409 | 18 | this.outputDirectory = outputDirectory; |
410 | 18 | } |
411 | |
|
412 | |
public boolean isOverwrite() |
413 | |
{ |
414 | 0 | return overwrite; |
415 | |
} |
416 | |
|
417 | |
public void setOverwrite( boolean overwrite ) |
418 | |
{ |
419 | 0 | this.overwrite = overwrite; |
420 | 0 | } |
421 | |
|
422 | |
public boolean isIncludeEmptyDirs() |
423 | |
{ |
424 | 0 | return includeEmptyDirs; |
425 | |
} |
426 | |
|
427 | |
public void setIncludeEmptyDirs( boolean includeEmptyDirs ) |
428 | |
{ |
429 | 0 | this.includeEmptyDirs = includeEmptyDirs; |
430 | 0 | } |
431 | |
|
432 | |
public List<String> getFilters() |
433 | |
{ |
434 | 0 | return filters; |
435 | |
} |
436 | |
|
437 | |
public void setFilters( List<String> filters ) |
438 | |
{ |
439 | 0 | this.filters = filters; |
440 | 0 | } |
441 | |
|
442 | |
public List<String> getDelimiters() |
443 | |
{ |
444 | 0 | return delimiters; |
445 | |
} |
446 | |
|
447 | |
public void setDelimiters( List<String> delimiters ) |
448 | |
{ |
449 | 0 | this.delimiters = delimiters; |
450 | 0 | } |
451 | |
|
452 | |
public boolean isUseDefaultDelimiters() |
453 | |
{ |
454 | 0 | return useDefaultDelimiters; |
455 | |
} |
456 | |
|
457 | |
public void setUseDefaultDelimiters( boolean useDefaultDelimiters ) |
458 | |
{ |
459 | 0 | this.useDefaultDelimiters = useDefaultDelimiters; |
460 | 0 | } |
461 | |
|
462 | |
} |