Codebase list maven-debian-helper / f249e9f
Merge branch 'typo-fix' into 'master' Fix typo: much match -> must match See merge request java-team/maven-debian-helper!4 Emmanuel Bourg 3 years ago
6 changed file(s) with 6 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
88 # - * (the star character, alone). In this case, anything will
99 # match and be left as it is. For example, using * on the
1010 # position of the artifact field will match any artifact id
11 # All elements much match before a rule can be applied
11 # All elements must match before a rule can be applied
1212 # Example rule: match jar with groupid= junit, artifactid= junit
1313 # and version starting with 3., this dependency is then removed
1414 # from the POM before mvn clean is called
77 # - * (the star character, alone). In this case, anything will
88 # match and be left as it is. For example, using * on the
99 # position of the artifact field will match any artifact id
10 # All elements much match before a rule can be applied
10 # All elements must match before a rule can be applied
1111 # Example rule: match jar with groupid= junit, artifactid= junit
1212 # and version starting with 3., this dependency is then removed
1313 # from the POM
1111 # - a regular expression of the form s/match/replace/
1212 # in this case, elements that match are transformed using
1313 # the regex rule.
14 # All elements much match before a rule can be applied
14 # All elements must match before a rule can be applied
1515 # Example rule: match jar with groupid= junit, artifactid= junit
1616 # and version starting with 3., replacing the version with 3.x
1717 # junit junit jar s/3\..*/3.x/
1010 # - a regular expression of the form s/match/replace/
1111 # in this case, elements that match are transformed using
1212 # the regex rule.
13 # All elements much match before a rule can be applied
13 # All elements must match before a rule can be applied
1414 # Example rule: match jar with groupid= junit, artifactid= junit
1515 # and version starting with 3., replacing the version with 3.x
1616 # junit junit jar s/3\..*/3.x/
1010 # - a regular expression of the form s/match/replace/
1111 # in this case, elements that match are transformed using
1212 # the regex rule.
13 # All elements much match before a rule can be applied
13 # All elements must match before a rule can be applied
1414 # Example rule: match jar with groupid= junit, artifactid= junit
1515 # and version starting with 3., replacing the version with 3.x
1616 # junit junit jar s/3\..*/3.x/
1010 # - a regular expression of the form s/match/replace/
1111 # in this case, elements that match are transformed using
1212 # the regex rule.
13 # All elements much match before a rule can be applied
13 # All elements must match before a rule can be applied
1414 # Example rule: match jar with groupid= junit, artifactid= junit
1515 # and version starting with 3., replacing the version with 3.x
1616 # junit junit jar s/3\\..*/3.x/