If you use Maven, you can eliminate the dependency on public data as follows:
<dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.8.3</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency>
I did the same with Spring, which also requires a commit. In fact, Spring themselves taught me to exclude it . As far as I can tell, now I have an environment without registration.
Update : for something like SLF4J / Logback, you might also need this in your configuration file:
<logger name="org.apache.commons" level="OFF" />
sparc_spread
source share