IDEA 下 Gradle 删除多余无用依赖的处理方法

目录
  • 简介
  • 如何使用
    • 1.引入插件
    • 2.应用插件
    • 3.使用 Gradle 进行重新载入项目
    • 4.生成报告
    • 5. 删除无用依赖
  • 特殊情况
    • Lombok
  • 总结

简介

项目中经过很久开发,会有很多当初引入后来又不再使用的依赖,靠肉眼很难分辨删除。

这时候,我们可以使用分析无用依赖插件进行处理:gradle-lint-plugin

如何使用

注意: 他可能存在删除错误的引用依赖,需要删除后进行检查和测试

并且,这里仅支持单模块项目,如果是多模块项目请参考官方文档进行处理

官方文档地址: https://github.com/nebula-plugins/gradle-lint-plugin/wiki

1.引入插件

在项目的 build.gradle 中引用该插件, 最新版本号可以 点击这里查看:

plugins {
  id 'nebula.lint' version '17.7.0'
}

如何你项目中本身已经有插件,则可以在后面追加,例如我的:

plugins {
    id 'org.springframework.boot' version '2.3.5.RELEASE'
    id 'io.spring.dependency-management' version '1.0.10.RELEASE'
    id 'java'
    id 'nebula.lint' version '17.7.0'
}

2.应用插件

build.gradle 应用 该插件,并在任意位置,配置检测规则:

apply plugin :"nebula.lint"
gradleLint.rules=['unused-dependency']

3.使用 Gradle 进行重新载入项目

IDEA 使用 Gradle 进行重新载入项目,则会出现 Lint 菜单, 如下图所示:

4.生成报告

点击 lint -> generateGradleLintReport, 可以生成报告。

报告仅保留不同类型的省略结果,可以看到有以下四种报告结果:

  • one or more classes are required by your code directly (no auto-fix available)
  • this dependency is unused and can be removed
  • this dependency should be removed since its artifact is empty (no auto-fix available)
  • this dependency is a service provider unused at compileClasspath time and can be moved to the runtimeOnly configuration (no auto-fix available)

其中, this dependency is unused and can be removed 表示可以删除的依赖。

Executing 'generateGradleLintReport'...
> Task :generateGradleLintReport
Generated a report containing information about 83 lint violations in this project
> Task :autoLintGradle
This project contains lint violations. A complete listing of the violations follows. 
Because none were serious, the build's overall status was unaffected.
warning   unused-dependency                  one or more classes in org.mockito:mockito-core:3.3.3 are required by your code directly (no auto-fix available)
warning   unused-dependency                  this dependency should be removed since its artifact is empty (no auto-fix available)
build.gradle:59
implementation 'org.springframework.boot:spring-boot-starter-actuator'
warning   unused-dependency                  this dependency is a service provider unused at compileClasspath time and can be moved to the runtimeOnly configuration (no auto-fix available)
build.gradle:69
compileOnly 'org.projectlombok:lombok'
warning   unused-dependency                  this dependency is unused and can be removed
build.gradle:101
compile group: 'ch.qos.logback', name: 'logback-core', version: '1.2.3'
83 problems (0 errors, 83 warnings)
To apply fixes automatically, run fixGradleLint, review, and commit the changes.

5. 删除无用依赖

我们可以看到报告的最后一句话,

To apply fixes automatically, run fixGradleLint, review, and commit the changes.

最后,可以执行 fixGradleLint 自动删除无用依赖。

修复报告如下,我们可以看到除了无用的依赖,还有一些其他的依赖也被删除了,原因是因为,他认为我们可以直接引入其对应的依赖而不是整个依赖包。

例如,compile group: 'com.baomidou', name: 'mybatis-plus-boot-starter', version: '3.3.1' 中我们只用了整个 starter 包的一部分依赖,可以仅依赖这一部分依赖,而不是整个 starter 包。这个也可以不按照他的推荐,直接手动选择保留。

Executing 'fixGradleLint'...
> Task :compileJava
> Task :processResources UP-TO-DATE
> Task :classes
> Task :compileTestJava
> Task :fixGradleLint
This project contains lint violations. A complete listing of my attempt to fix them follows. Please review and commit the changes.
needs fixing   unused-dependency                  one or more classes in com.baomidou:mybatis-plus-core:3.3.1 are required by your code directly
fixed          unused-dependency                  this dependency is unused and can be removed
build.gradle:105
compile 'org.ehcache:ehcache'
build.gradle:106
compile 'javax.cache:cache-api'
build.gradle:107
compile 'org.mybatis:mybatis-typehandlers-jsr310:1.0.2'
build.gradle:112
testImplementation 'org.springframework.security:spring-security-test'
Corrected 17 lint problems

特殊情况

Lombok

Lombok 是一个编译时自动生成 Getter/Setter 和构造器的工具。

Nebula Lint 依旧会检测无用的依赖,日志如下:

> Task :lintGradle FAILED
This project contains lint violations. A complete listing of the violations follows. 
Because none were serious, the build's overall status was unaffected.
warning   unused-dependency                  this dependency is a service provider unused at compile time and can be moved to the runtime configuration

处理方式(修改版本号):

gradleLint.ignore('unused-dependency') {
		compileOnly group: 'org.projectlombok', name: 'lombok', version:'1.16.20'
	}

相关 Github issue: Nebula Lint does not handle certain @Retention(RetentionPolicy.SOURCE) annotations correctly #170

总结

使用该插件可以一定程度上帮助我们删除无用依赖,但是也可能会多删除有用的依赖。

需要在使用插件自动修复后手动检测项目,验证是否会出现问题,避免导致上线发布错误的负优化。

到此这篇关于IDEA 下 Gradle 删除多余无用依赖的文章就介绍到这了,更多相关idea Gradle 删除依赖内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • idea gradle项目复制依赖小技巧(推荐)

    1 IDEA从pom文件复制依赖到gradle小技巧 如果在gradle工程项目复制pom项目的各种依赖,可以不用考虑一点点粘贴groupId artifactid以及version字段,直接复制整个dependency,idea会自动识别相关 xml转换成gradle依赖形式,具体使用如下所示: > 点击粘贴可以直接看到内容格式发生转换,如下所示: 注意:这里有一个小提醒,复制的pom依赖必须包含version字段,否则也会复制格式转化不生效的问题! 到此这篇关于idea gradle项目复制

  • IDEA 下 Gradle 删除多余无用依赖的处理方法

    目录 简介 如何使用 1.引入插件 2.应用插件 3.使用 Gradle 进行重新载入项目 4.生成报告 5. 删除无用依赖 特殊情况 Lombok 总结 简介 项目中经过很久开发,会有很多当初引入后来又不再使用的依赖,靠肉眼很难分辨删除. 这时候,我们可以使用分析无用依赖插件进行处理:gradle-lint-plugin 如何使用 注意: 他可能存在删除错误的引用依赖,需要删除后进行检查和测试 并且,这里仅支持单模块项目,如果是多模块项目请参考官方文档进行处理 官方文档地址: https://

  • Linux下Oracle删除用户和表空间的方法

    本文实例讲述了Linux下Oracle删除用户和表空间的方法.分享给大家供大家参考,具体如下: 1.删除某个用户 SQL> conn /as sysdba Connected. SQL> drop user userName cascade; 用户已删除 如果用户无法删除,并报错: ERROR at line 1: ORA-01940: cannot drop a user that is currently connected 通过查看用户的进行,并kill用户进程,然后删除用户. SQL&

  • Linux下彻底删除Mysql 8.0服务的方法

    观看本文前最好有一定的Linux命令基础,具体为centos7.3环境中清除使用yum安装的Mysql 卸载前请先关闭Mysql服务 service mysql stop 使用 rpm 命令的方式查看已安装的mysql rpm -qa|grep mysql 开始卸载Mysql服务 使用yum安装需要先进行清除服务等 yum remove mysql mysql-server mysql-libs mysql-server 再次查询 rpm -qa|grep mysql 使用过rpm -ev +对

  • Vista下完美删除EISA硬盘隐藏分区的方法

    在网上搜索了很久,大部分都是说要重新启动到DOS下才可以进行,对技能要就较高,经过笔者不懈努力,研究了若干Windows自带的工具后,终于找到一个工具:Diskpart.exe. 关于Diskpart命令:使用此实用工具可以从脚本.远程会话或其他命令提示符处启用存储配置.Diskpart 增强了磁盘管理器图形用户界面 (GUI). 下面介绍如何在Vista下删除EISA配置的隐藏分区. 1:用管理员的身份启动命令提示符(开始-> 所以程序-> 附件-〉命令提示符-〉右键选择以管理员身份运行) 

  • 压缩aspx页面删除多余空格的两种方法

    两种方法实现: 1)一行一行的读取aspx文件然后处理 2)一次性读取aspx文件然后处理  处理逻辑: 替换"  "为" "(将两个空格替换为一个空格),将所有的换行符替换为空字符(极限压缩) 注意事项: 1)一行一行处理在极限压缩的情况下需要额外的处理服务端控件换行的情况,比如 复制代码 代码如下: Line 1:<asp:Label  runat="server" Line 2: ID="lb1"   .... L

  • 详解IDEA下Gradle多模块(项目)的构建

    我们在新起一个项目的时候,一般都会建多个子项目(IDEA里面称之为Module模块).通过Gradle构建,多个Module之间需要将公用的配置抽取到全局,子项目中只写差异化的配置,以便于维护. 多模块项目的Gradle目录结构 示例:我的示例项目demo,我需要有一个common模块用于公用代码,一个rest模块用于提供rest接口,rest依赖common,如果用gradle构建,目录树会是这样: demo ├── build.gradle -- 全局配置 ├── settings.grad

  • Linux下自动删除过期备份和自动异地备份的脚本

    目录 每天自动删除过期备份 每天定时异地备份 每天自动删除过期备份 首先编写一个简单的Shell脚本DeleteExpireBackup.sh: #!/bin/bash # 修改需要删除的路径 location="/database/backup/" # 删除最后修改时间为30天以前的备份文件夹 find $location -mtime +30 -type d | xargs rm -rf {} -mtime:文件内容最后一次修改的时间,+30 代表大于30天的.其他参数可选: 访问

  • C++删除指定文件夹下N天及之前日志文件的方法

    本文实例讲述了C++删除指定文件夹下N天及之前日志文件的方法.分享给大家供大家参考.具体如下: // 功能:删除nDays天及之前的日志文件 // @nDays: 0-不删除日志,3-删除3天及之前的日志(保留今天.昨天.前天的日志) ... void CRecordLog::ClearLog(UINT nDays) // 删除N天前的日志 { if (nDays > 0) { WIN32_FIND_DATA FindFileData; CString sAllFile = m_sLogFold

  • linux下批量删除utf8 bom的实现方法

    低版本的gcc编译包含bom的文件会报错 xxx.cpp:1: error: stray '\357' in program xxx.cpp:1: error: stray '\273' in program xxx.cpp:1: error: stray '\277' in program 批量删除之 grep -rIlo $'^\xEF\xBB\xBF' . | xargs sed --in-place -e 's/\xef\xbb\xbf//' 在文件末尾增加空白行 find . -nam

  • Windows和Linux下定时删除某天前的文件的脚本

    以前做到最多的定时我们就是定时备份功能了,我们常用利用定时功能来备份网站数据或备份数据库了,下面我来给(www.jb51.net)大家介绍几个Linux与Windows中定时删除某天前的文件方法,这个与备份有点区别,但大同小义了. Windows下bat文件内容如下: 复制代码 代码如下: @echo off forfiles -p "D:\servers\apache2.2\logs" -s -m *.log -d -15 -c "cmd /c del @path"

随机推荐