Dan, Heroku does support self contained jar files. You will need to install the Heroku CLI tool if you haven't already.
heroku plugins:install heroku-cli-deploy Then run the following, relevant to your application. heroku deploy:jar target/my-app.jar --app sushi You can then put any customisations into a Procfile. Heroku have detailed this process here https://devcenter.heroku.com/articles/deploying-executable-jar-files Upgrading to hobby is as simple as logging into your dashboard and clicking upgrade. It's $7 from memory. Dearg > On 23 Dec 2016, at 00:27, Dan Campbell <[email protected]> wrote: > > Hi, > > I have a simple application, that doesn't use a database, which is packed in > a .jar with an embedded Jetty server. > > Does Heroku support those? > > I'm trying to figure out how to purchase the Hobby plan, but it's not clear > how to do that. > > I'm going to share the source code, at some point next year. But it's not at > the sharing stage, yet. Does Heroku allow that? > > > Regards, > > DC > > > > > -- > -- > You received this message because you are subscribed to the Google > Groups "Heroku" group. > > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/heroku?hl=en_US?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "Heroku Community" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "Heroku Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
