扫码关注官方订阅号
人生最曼妙的风景,竟是内心的淡定与从容!
compile fileTreedir: 'libs', include: ['*.jar'])这个是扫描包含libs下的jar文件,而你的jar包都在libs下的apache_core、apache_client这样的子目录中,当然就扫描不到。可以增加compile fileTreedir: 'libs/apache_core', include: ['*.jar'])compile fileTreedir: 'libs/apache_client', include: ['*.jar'])来进行对应文件夹的jar文件。
compile fileTreedir: 'libs', include: ['*.jar'])
libs
jar
apache_core
apache_client
compile fileTreedir: 'libs/apache_core', include: ['*.jar'])
compile fileTreedir: 'libs/apache_client', include: ['*.jar'])
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
compile fileTreedir: 'libs', include: ['*.jar'])
这个是扫描包含
libs
下的jar
文件,而你的jar
包都在libs
下的apache_core
、apache_client
这样的子目录中,当然就扫描不到。可以增加
compile fileTreedir: 'libs/apache_core', include: ['*.jar'])
compile fileTreedir: 'libs/apache_client', include: ['*.jar'])
来进行对应文件夹的
jar
文件。