A web application that generates and serves game schedules as PDF documents
This application consumes the swiss unihockey API v2
Application will be deployed autmatically on every commit to master (i.e. release)
For information about the deployment to heroku have a look at Getting Started with Java on Heroku
The application could be automatically deployed to cloudfoundry with the cf-maven-plugin build the application (clean
install
) with the maven profile deploy-to-cloudfoundry
. As a prerequisite the server has to be specified in the settings.xml
(~\m2\settings.xml
) file.
<settings>
...
<servers>
...
<server>
<id>swisscom-cloudfoundry</id>
<username>USERNAME</username>
<password>PASSWORD</password>
</server>
</servers>
...
</settings>
Execute the following command to deploy the application to cloudfoundry:
cf push <APP_NAME> -p game-schedule-pdf-generator-VERSION.jar -b https://github.com/cloudfoundry/java-buildpack.git