使用gradle编译liferay工作空间时出错

问题描述 投票:0回答:0

我在使用 liferay 和工作区插件时遇到问题。我不得不删除我计算机上的所有 gradle 缓存,突然之间,liferay 项目将无法再次编译...我执行命令:

./gradlew build

我收到的错误是:

* Where:
Settings file 'src/liferay/settings.gradle' line: 20

* What went wrong:
A problem occurred evaluating settings 'liferay'.
> Failed to apply plugin 'com.liferay.workspace'.
   > Could not create an instance of type com.liferay.gradle.plugins.workspace.WorkspaceExtension.
      > com/liferay/portal/tools/bundle/support/commands/DownloadCommand

这些行中的settings.gradle 文件:

buildscript {
    dependencies {
        classpath group: "biz.aQute.bnd", name: "biz.aQute.bnd", version: "5.2.0"
        classpath(group: "com.liferay", name: "com.liferay.gradle.plugins.workspace", version: "3.4.48") {
            exclude group: "biz.aQute.bnd", module: "biz.aQute.bnd"
        }
        classpath group: "net.saliman", name: "gradle-properties-plugin", version: "1.4.6"
    }

}

apply plugin: "net.saliman.properties"

apply plugin: "com.liferay.workspace"

我尝试过使用 Java 11(我一直用于该项目的 java 版本)和 Java 17

我在互联网上寻找过这个错误,但没有看到解决方案。当我清理gradle缓存时,问题就开始了,在此之前,项目编译完美

有人可以帮助我吗?

由于 liferay 工作区插件,我在编译 liferay 工作区时遇到问题。我想解决我的编译问题

gradle liferay gradle-plugin workspace
© www.soinside.com 2019 - 2024. All rights reserved.