Examples of SDKRuntimePlugin


Examples of com.google.appengine.tools.plugins.SDKRuntimePlugin

      splitJars(new File(new File(stageDir, "WEB-INF"), "lib"),
                maxJarSize, opts.getJarSplittingExcludes());
    }

    if (getSourceLanguage() != null) {
      SDKRuntimePlugin runtimePlugin = SDKPluginManager.findRuntimePlugin(getSourceLanguage());
      if (runtimePlugin != null) {
        runtimePlugin.processStagingDirectory(stageDir);
      }
    }

    return stageDir;
  }
View Full Code Here

Examples of com.google.appengine.tools.plugins.SDKRuntimePlugin

              + " as an argument after the action name.");
        }
        applicationDirectory = getArgs().get(0);
        validateCommandLineForEar();

        SDKRuntimePlugin runtimePlugin = SDKPluginManager.findRuntimePlugin(
            new File(applicationDirectory));
        if (runtimePlugin != null) {
          try {
            ApplicationDirectories appDirs = runtimePlugin.generateApplicationDirectories(
                new File(applicationDirectory));
            applicationDirectory = appDirs.getWarDir().getPath();
            getArgs().set(0, applicationDirectory);
            externalResourceDir = appDirs.getExternalResourceDir().getPath();
          } catch (IOException e) {
View Full Code Here

Examples of com.google.appengine.tools.plugins.SDKRuntimePlugin

          System.exit(1);
        }
        File appDir = new File(args.get(0)).getCanonicalFile();
        validateWarPath(appDir);

        SDKRuntimePlugin runtimePlugin = SDKPluginManager.findRuntimePlugin(appDir);
        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) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.