File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 61
61
<pmd .plugin.version>2.8-SNAPSHOT</pmd .plugin.version>
62
62
<cobertura .plugin.version>2.5.1</cobertura .plugin.version>
63
63
<javadoc .plugin.version>2.8.1</javadoc .plugin.version>
64
+ <enforcer .plugin.version>1.1.1</enforcer .plugin.version>
64
65
<antrun .plugin.version>1.7</antrun .plugin.version>
65
66
66
67
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
661
662
</configuration >
662
663
</plugin >
663
664
665
+ <plugin >
666
+ <groupId >org.apache.maven.plugins</groupId >
667
+ <artifactId >maven-enforcer-plugin</artifactId >
668
+ <version >${enforcer.plugin.version} </version >
669
+ <executions >
670
+ <execution >
671
+ <id >enforce-banned-dependencies</id >
672
+ <goals >
673
+ <goal >enforce</goal >
674
+ </goals >
675
+ <configuration >
676
+ <rules >
677
+ <bannedDependencies >
678
+ <excludes >
679
+ <exclude >commons-logging</exclude >
680
+ </excludes >
681
+ </bannedDependencies >
682
+ </rules >
683
+ </configuration >
684
+ </execution >
685
+ </executions >
686
+ </plugin >
687
+
664
688
</plugins >
665
689
666
690
</build >
You can’t perform that action at this time.
0 commit comments