我正在尝试使用@ResolutionScope maven注释(记录为here)。不幸的是,我无法弄清楚如何把它放在班上。
@Mojo(name="json-schema-generator-main")
@ResolutionScope ????
public class JsonSchemaGenerator extends AbstractMojo
我需要把什么放在????区域?
答案 0 :(得分:1)
我建议您检查使用ResolutionScope的地方the docs it should be put here:
@Mojo( name = "<goal-name>",
requiresDependencyResolution = ResolutionScope.<scope>,
)
相反,它是自己的注释。