com.heroku.sdk.deploy.DeployWar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heroku-deploy Show documentation
Show all versions of heroku-deploy Show documentation
Library for deploying Java applications to Heroku
package com.heroku.sdk.deploy;
import org.apache.commons.io.FileUtils;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.*;
public class DeployWar extends WarApp {
private static final String WEBAPP_RUNNER_URL="http://central.maven.org/maven2/com/github/jsimone/webapp-runner/7.0.57.2/webapp-runner-7.0.57.2.jar";
public DeployWar(String name, File warFile, URL webappRunnerUrl) throws IOException {
super(name);
this.warFile = warFile;
this.webappRunnerJar = new File(getAppDir(), "webapp-runner.jar");
FileUtils.copyURLToFile(webappRunnerUrl, webappRunnerJar);
}
@Override
protected Map defaultProcTypes() {
Map processTypes = new HashMap();
processTypes.put("web", "java $JAVA_OPTS -jar webapp-runner.jar $WEBAPP_RUNNER_OPTS --port $PORT ./" + relativize(warFile));
return processTypes;
}
private static List includesToList(String includes) {
List includeStrings = Arrays.asList(includes.split(File.pathSeparator));
List includeFiles = new ArrayList<>(includeStrings.size());
for (String includeString : includeStrings) {
if (!includeString.isEmpty()) {
includeFiles.add(new File(includeString));
}
}
return includeFiles;
}
@Override
public void logInfo(String message) { System.out.println(message); }
public static void main(String[] args) throws Exception {
String warFile = System.getProperty("heroku.warFile", null);
String appName = System.getProperty("heroku.appName", null);
String jdkVersion = System.getProperty("heroku.jdkVersion", null);
String jdkUrl = System.getProperty("heroku.jdkUrl", null);
String stack = System.getProperty("heroku.stack", "cedar-14");
List includes = includesToList(System.getProperty("heroku.includes", ""));
String webappRunnerUrl = System.getProperty("heroku.webappRunnerUrl", WEBAPP_RUNNER_URL);
String slugFileName = System.getProperty("heroku.slugFileName", "slug.tgz");
if (warFile == null) {
throw new IllegalArgumentException("Path to WAR file must be provided with heroku.warFile system property!");
}
if (appName == null) {
throw new IllegalArgumentException("Heroku app name must be provided with heroku.appName system property!");
}
(new DeployWar(appName, new File(warFile), new URL(webappRunnerUrl))).
deploy(includes, new HashMap(), jdkUrl == null ? jdkVersion : jdkUrl, stack, slugFileName);
}
}