commons-logging-1.2.jar的依赖怎么写
时间: 2023-09-05 10:09:12 浏览: 200
如果你使用Maven构建项目,可以在pom.xml文件中添加以下依赖:
```
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
```
如果你使用Gradle构建项目,可以在build.gradle文件中添加以下依赖:
```
implementation 'commons-logging:commons-logging:1.2'
```
如果你手动管理依赖,可以将commons-logging-1.2.jar文件放在项目的classpath中,并在编译和运行时包含它。
阅读全文