Prevent htmlunit from pulling in commons-logging

Update dependency management to exclude commons-logging and add
an enforcer rule to spring-boot-samples to try and prevent unwanted
commons-logging dependencies from sneaking back in again.

Closes gh-7067
This commit is contained in:
Andy Wilkinson
2016-09-29 21:08:15 +01:00
parent b495ed4772
commit cf4142dbc0
2 changed files with 29 additions and 0 deletions

View File

@@ -1048,6 +1048,12 @@
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>${htmlunit.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sourceforge.jtds</groupId>