Skip to content

Commit

Permalink
[pepite#31] Add Travis support
Browse files Browse the repository at this point in the history
* Remove HTTPS config : fix "https without keystore configured. play auto-test will fail."
  • Loading branch information
xael-fry committed Sep 17, 2013
1 parent adbf63a commit f8de3e0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ jdk:
- openjdk7
- openjdk6
env:
- PLAY_VERSION=1.2.5 PLAY_DOWNLOAD=http://downloads.typesafe.com/releases/play-1.2.5.zip
- PLAY_VERSION=1.2.5.1 PLAY_DOWNLOAD=http://downloads.typesafe.com/play/1.2.5.1/play-1.2.5.1.zip
- PLAY_VERSION=1.2.6 PLAY_DOWNLOAD=http://downloads.typesafe.com/play/1.2.6/play-1.2.6.zip
- PLAY_VERSION=play-1.2.5.1 PLAY_DOWNLOAD=http://downloads.typesafe.com/play/1.2.5.1/play-1.2.5.1.zip
- PLAY_VERSION=play-1.2.6 PLAY_DOWNLOAD=http://downloads.typesafe.com/play/1.2.6/play-1.2.6.zip
- PLAY_VERSION=master PLAY_DOWNLOAD=https://github.com/playframework/play1/archive/master.zip
- PLAY_VERSION=1.3.x PLAY_DOWNLOAD=https://github.com/playframework/play1/archive/1.3.x.zip
before_script:
- wget ${PLAY_DOWNLOAD}
- unzip -q play-${PLAY_VERSION}.zip
- unzip -q ${PLAY_VERSION}.zip
script:
- ant test -Dplay.path=play-${PLAY_VERSION}
- ant test -Dplay.path=${PLAY_VERSION}
after_failure:
cat ./samples-and-tests/just-test-cases/test-result/*.failed.html
notifications:
Expand Down
4 changes: 3 additions & 1 deletion README → README.textile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
PDF module for the Play! framework. This module allows you to easily create PDF documents.
h1. PDF module for the Play! framework. "!https://travis-ci.org/playframework/play.png!":https://travis-ci.org/xael-fry/play

This module allows you to easily create PDF documents.

Copyright 2010

Expand Down
2 changes: 1 addition & 1 deletion samples-and-tests/pdf/conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ date.format=dd-MM-yyyy
# ~~~~~
# If you need to change the HTTP port, uncomment this (default is set to 9000)
http.port=9000
https.port=9443
#https.port=9443
#
# By default the server listen for HTTP on the wilcard address.
# You can restrict this.
Expand Down

0 comments on commit f8de3e0

Please sign in to comment.