马文有时比我的头部高一点...... 我创建了一个图书馆,可选择依赖高尔夫球和 log球。 选择:
- My library needs those logging frameworks at compile time
- My library doesn t need them at runtime, but if it "discovers" them, it will use them
目前,我把依赖称为“选择”和“提供”:
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<type>jar</type>
<scope>provided</scope>
<optional>true</optional>
</dependency>
但是,我的一些用户报告了问题,因为他们并不需要记录4 /lf4j。 我的扶养是否正确? 不幸的是,我认为正式文件太抽象,无法理解这一问题。