gralde错误 Java Runtime 55

错误信息

org/eclipse/jgit/storage/file/FileRepositoryBuilder has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0

找到文件build.gradle 中以下内容

plugins {
    id 'org.ajoberstar.grgit' version '4.1.0'
}

修改为:

plugins {
    id 'org.ajoberstar.grgit' version '4.1.1'
}