gpt4 book ai didi

com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller.setYarnDownloadRoot()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-15 05:49:31 31 4
gpt4 key购买 nike

本文整理了Java中com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller.setYarnDownloadRoot()方法的一些代码示例,展示了YarnInstaller.setYarnDownloadRoot()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YarnInstaller.setYarnDownloadRoot()方法的具体详情如下:
包路径:com.github.eirslett.maven.plugins.frontend.lib.YarnInstaller
类名称:YarnInstaller
方法名:setYarnDownloadRoot

YarnInstaller.setYarnDownloadRoot介绍

暂无

代码示例

代码示例来源:origin: jooby-project/jooby

@Override
protected NodeTask newTask(FrontendPluginFactory factory, Config conf, ProxyConfig proxy,
  Map<String, String> env, String nodeVersion) throws InstallationException {
 Function<String, String> property = key -> conf.hasPath(key) ? conf.getString(key) : null;
 factory.getYarnInstaller(proxy)
     .setYarnVersion(yarnVersion)
     .setYarnDownloadRoot(conf.getString("yarn.downloadRoot"))
     .setUserName(property.apply("yarn.username"))
     .setPassword(property.apply("yarn.password"))
     .install();
 YarnRunner yarn = factory.getYarnRunner(proxy, conf.getString("npm.registryURL"));
 return (cmd, args) -> {
  String cmdline = cmd + " " + Arrays.asList(args).stream().collect(Collectors.joining(" "));
  yarn.execute(cmdline, env);
 };
}

代码示例来源:origin: eirslett/frontend-maven-plugin

@Override
public void execute(FrontendPluginFactory factory) throws InstallationException {
  ProxyConfig proxyConfig = MojoUtils.getProxyConfig(this.session, this.decrypter);
  Server server = MojoUtils.decryptServer(this.serverId, this.session, this.decrypter);
  if (null != server) {
    factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
      .setNodeVersion(this.nodeVersion).setPassword(server.getPassword())
      .setUserName(server.getUsername()).install();
    factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
      .setYarnVersion(this.yarnVersion).setUserName(server.getUsername())
      .setPassword(server.getPassword()).install();
  } else {
    factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
      .setNodeVersion(this.nodeVersion).install();
    factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
      .setYarnVersion(this.yarnVersion).install();
  }
}

代码示例来源:origin: com.vaadin/flow-maven-plugin

private YarnRunner downloadYarn(File workingDirectory,
    ProxyConfig proxyConfig, String npmRegistryUrl,
    String yarnVersion) {
  FrontendPluginFactory factory = new FrontendPluginFactory(
      workingDirectory, workingDirectory);
  try {
    factory.getYarnInstaller(proxyConfig).setYarnVersion(yarnVersion)
        .setYarnDownloadRoot(
            YarnInstaller.DEFAULT_YARN_DOWNLOAD_ROOT)
        .install();
  } catch (InstallationException e) {
    throw new IllegalStateException("Failed to download yarn", e);
  }
  return factory.getYarnRunner(proxyConfig, validateUrl(npmRegistryUrl));
}

代码示例来源:origin: com.github.eirslett/frontend-maven-plugin

@Override
public void execute(FrontendPluginFactory factory) throws InstallationException {
  ProxyConfig proxyConfig = MojoUtils.getProxyConfig(this.session, this.decrypter);
  Server server = MojoUtils.decryptServer(this.serverId, this.session, this.decrypter);
  if (null != server) {
    factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
      .setNodeVersion(this.nodeVersion).setPassword(server.getPassword())
      .setUserName(server.getUsername()).install();
    factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
      .setYarnVersion(this.yarnVersion).setUserName(server.getUsername())
      .setPassword(server.getPassword()).install();
  } else {
    factory.getNodeInstaller(proxyConfig).setNodeDownloadRoot(this.nodeDownloadRoot)
      .setNodeVersion(this.nodeVersion).install();
    factory.getYarnInstaller(proxyConfig).setYarnDownloadRoot(this.yarnDownloadRoot)
      .setYarnVersion(this.yarnVersion).install();
  }
}

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com