8

使用带有 maven2 插件的 eclipse 时,我似乎找不到 apache 通用日志记录。

我显然需要它用于spring3 mvc。

4

1 回答 1

17

你知道 m2eclipse 插件可以搜索一些索引存储库,比如central吗?例如,如果您右键单击您的项目并转到Maven > Add Dependency,您可以像这样使用它:

替代文字

这会将其添加到您的 pom 中:

<dependency>
  <groupId>commons-logging</groupId>
  <artifactId>commons-logging</artifactId>
  <version>1.1.1</version>
</dependency>

另一种选择是使用众多 存储库 搜索引擎之一,例如:

http://search.maven.org/#artifactdetails|commons-logging|commons-logging|1.1.1|jar

于 2010-02-11T00:55:31.767 回答