-
Notifications
You must be signed in to change notification settings - Fork 81
Open
Labels
kind/supportCategorizes issue or PR as a support question.Categorizes issue or PR as a support question.
Description
package run.halo.starter.schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import run.halo.app.extension.AbstractExtension;
import run.halo.app.extension.GVK;
/**
* @author guqing
* @author ryanwang
* @since 2.0.0
*/
@Data
@EqualsAndHashCode(callSuper = true)
@GVK(group = "core.halo.run", version = "v1alpha1",
kind = "Link", plural = "links", singular = "link")
public class Link extends AbstractExtension {
private LinkSpec spec;
@Data
public static class LinkSpec {
private String url;
private String displayName;
private String logo;
private String description;
private Integer priority;
private String groupName;
}
}
I got error when try to add this Scheme into my starter after cloned. When removed this class file, I can build success
The error is:
> Task :compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> java.lang.NoSuchFieldError: Class com.sun.tools.javac.tree.JCTree$JCImport does not have member field 'com.sun.tools.javac.tree.JCTree qualid'
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.
Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
For more on this, please refer to https://docs.gradle.org/8.9/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.
BUILD FAILED in 5s
5 actionable tasks: 3 executed, 2 up-to-date
Metadata
Metadata
Assignees
Labels
kind/supportCategorizes issue or PR as a support question.Categorizes issue or PR as a support question.