Package com.google.appengine.tools.info

Examples of com.google.appengine.tools.info.UpdateCheck


      if (applicationDirectory != null) {
        File appDirectoryFile = new File(applicationDirectory);
        validateApplicationDirectory(appDirectoryFile);

        UpdateCheck updateCheck = new UpdateCheck(connectOptions.getServer(), appDirectoryFile,
            connectOptions.getSecure());
        if (!disableUpdateCheck) {
          updateCheck.maybePrintNagScreen(System.out);
        }
        updateCheck.checkJavaVersion(System.out);

        if (oauth2) {
          authorizeOauth2(connectOptions);
        } else {
          loadCookies(connectOptions);
View Full Code Here


      throw new UnableToCompleteException();
    }
  }

  protected void maybePerformUpdateCheck(TreeLogger logger) {
    UpdateCheck updateCheck = new UpdateCheck(SdkInfo.getDefaultServer());
    if (updateCheck.allowedToCheckForUpdates()) {
      ByteArrayOutputStream baos = new ByteArrayOutputStream();
      if (updateCheck.maybePrintNagScreen(new PrintStream(baos))) {
        logger.log(TreeLogger.WARN, new String(baos.toByteArray()));
      }
    }
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    if (updateCheck.checkJavaVersion(new PrintStream(baos))) {
      logger.log(TreeLogger.WARN, new String(baos.toByteArray()));
    }
  }
View Full Code Here

        if (runtimePlugin != null) {
          ApplicationDirectories appDirs = runtimePlugin.generateApplicationDirectories(appDir);
          appDir = appDirs.getWarDir();
          externalResourceDir = appDirs.getExternalResourceDir();
        }
        UpdateCheck updateCheck = new UpdateCheck(versionCheckServer, appDir, true);
        if (updateCheck.allowedToCheckForUpdates() && !disableUpdateCheck) {
          updateCheck.maybePrintNagScreen(System.err);
        }
        updateCheck.checkJavaVersion(System.err);

        DevAppServer server = new DevAppServerFactory().createDevAppServer(appDir,
            externalResourceDir, address, port, getNoJavaAgent());

        Map<String, String> stringProperties = getSystemProperties();
View Full Code Here

        }
    }

    protected ProtocolMetaData doDeployInternal(Archive<?> archive) throws DeploymentException {
        if (configuration.isUpdateCheck()) {
            UpdateCheck updateCheck = new UpdateCheck(SdkInfo.getDefaultServer());
            if (updateCheck.allowedToCheckForUpdates()) {
                updateCheck.maybePrintNagScreen(new PrintStream(System.out, true));
            }
        }

        String appId = configuration.getAppId();
        final String module = configuration.getModule();
View Full Code Here

        }
    }

    protected ProtocolMetaData doDeployInternal(Archive<?> archive) throws DeploymentException {
        if (configuration.isUpdateCheck()) {
            UpdateCheck updateCheck = new UpdateCheck(SdkInfo.getDefaultServer());
            if (updateCheck.allowedToCheckForUpdates()) {
                updateCheck.maybePrintNagScreen(new PrintStream(System.out, true));
            }
        }

        String appId = configuration.getAppId();
        final String module = configuration.getModule();
View Full Code Here

    }

    protected ProtocolMetaData doDeploy(Archive<?> archive) throws DeploymentException {
        try {
            if (configuration.isUpdateCheck()) {
                UpdateCheck updateCheck = new UpdateCheck(SdkInfo.getDefaultServer());
                if (updateCheck.allowedToCheckForUpdates()) {
                    updateCheck.maybePrintNagScreen(new PrintStream(System.out, true));
                }
            }

            final Application app = readApplication();
View Full Code Here

    }

    protected ProtocolMetaData doDeploy(Archive<?> archive) throws DeploymentException {
        try {
            if (configuration.isUpdateCheck()) {
                UpdateCheck updateCheck = new UpdateCheck(SdkInfo.getDefaultServer());
                if (updateCheck.allowedToCheckForUpdates()) {
                    updateCheck.maybePrintNagScreen(new PrintStream(System.out, true));
                }
            }

            final GenericApplication app = readApplication();
            final AppAdmin appAdmin = createAppAdmin(app);
View Full Code Here

    }

    protected ProtocolMetaData doDeploy(Archive<?> archive) throws DeploymentException {
        try {
            if (configuration.isUpdateCheck()) {
                UpdateCheck updateCheck = new UpdateCheck(SdkInfo.getDefaultServer());
                if (updateCheck.allowedToCheckForUpdates()) {
                    updateCheck.maybePrintNagScreen(new PrintStream(System.out, true));
                }
            }

            final GenericApplication app = readApplication();
            final AppAdmin appAdmin = createAppAdmin(app);
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.info.UpdateCheck

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.