1 package org.apache.maven.model.interpolation;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import java.util.HashSet;
23 import java.util.Set;
24
25 import org.apache.maven.model.path.UrlNormalizer;
26 import org.codehaus.plexus.interpolation.InterpolationPostProcessor;
27
28
29
30
31
32
33 class UrlNormalizingPostProcessor
34 implements InterpolationPostProcessor
35 {
36
37 private static final Set<String> URL_EXPRESSIONS;
38
39 static
40 {
41 Set<String> expressions = new HashSet<>();
42 expressions.add( "project.url" );
43 expressions.add( "project.scm.url" );
44 expressions.add( "project.scm.connection" );
45 expressions.add( "project.scm.developerConnection" );
46 expressions.add( "project.distributionManagement.site.url" );
47
48 URL_EXPRESSIONS = expressions;
49 }
50
51 private UrlNormalizer normalizer;
52
53 UrlNormalizingPostProcessor( UrlNormalizer normalizer )
54 {
55 this.normalizer = normalizer;
56 }
57
58 @Override
59 public Object execute( String expression, Object value )
60 {
61 if ( value != null && URL_EXPRESSIONS.contains( expression ) )
62 {
63 return normalizer.normalize( value.toString() );
64 }
65
66 return null;
67 }
68
69 }