1 package org.apache.maven.tools.plugin.util;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import java.util.Collections;
23 import java.util.Comparator;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27
28 import org.apache.maven.plugin.descriptor.MojoDescriptor;
29 import org.apache.maven.plugin.descriptor.Parameter;
30 import org.codehaus.plexus.util.DirectoryScanner;
31 import org.codehaus.plexus.util.FileUtils;
32 import org.codehaus.plexus.util.StringUtils;
33
34
35
36
37
38
39
40 public final class PluginUtils
41 {
42 private PluginUtils()
43 {
44
45 }
46
47
48
49
50
51
52
53
54
55 public static final Map<String, String> MAVEN_COMPONENTS;
56 static
57 {
58 Map<String, String> mavenComponents = new HashMap<String, String>();
59
60 mavenComponents.put( "org.apache.maven.execution.MavenSession", "${session}" );
61 mavenComponents.put( "org.apache.maven.project.MavenProject", "${project}" );
62 mavenComponents.put( "org.apache.maven.plugin.MojoExecution", "${mojoExecution}" );
63 mavenComponents.put( "org.apache.maven.plugin.descriptor.PluginDescriptor", "${plugin}" );
64 mavenComponents.put( "org.apache.maven.settings.Settings", "${settings}" );
65
66 MAVEN_COMPONENTS = Collections.unmodifiableMap( mavenComponents );
67 }
68
69
70
71
72
73
74 public static String[] findSources( String basedir, String include )
75 {
76 return PluginUtils.findSources( basedir, include, null );
77 }
78
79
80
81
82
83
84
85 public static String[] findSources( String basedir, String include, String exclude )
86 {
87 DirectoryScanner scanner = new DirectoryScanner();
88 scanner.setBasedir( basedir );
89 scanner.setIncludes( new String[] { include } );
90 if ( !StringUtils.isEmpty( exclude ) )
91 {
92 scanner.setExcludes( new String[] { exclude, StringUtils.join( FileUtils.getDefaultExcludes(), "," ) } );
93 }
94 else
95 {
96 scanner.setExcludes( FileUtils.getDefaultExcludes() );
97 }
98
99 scanner.scan();
100
101 return scanner.getIncludedFiles();
102 }
103
104
105
106
107
108
109
110 public static void sortMojos( List<MojoDescriptor> mojoDescriptors )
111 {
112 if ( mojoDescriptors != null )
113 {
114 Collections.sort( mojoDescriptors, new Comparator<MojoDescriptor>()
115 {
116
117 public int compare( MojoDescriptor mojo0, MojoDescriptor mojo1 )
118 {
119 return mojo0.getGoal().compareToIgnoreCase( mojo1.getGoal() );
120 }
121 } );
122 }
123 }
124
125
126
127
128
129
130
131
132 public static void sortMojoParameters( List<Parameter> parameters )
133 {
134 if ( parameters != null )
135 {
136 Collections.sort( parameters, new Comparator<Parameter>()
137 {
138
139 public int compare( Parameter parameter1, Parameter parameter2 )
140 {
141 return parameter1.getName().compareToIgnoreCase( parameter2.getName() );
142 }
143 } );
144 }
145 }
146 }