Navigation Menu

Skip to content

Commit

Permalink
Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
brmeyer committed Mar 17, 2015
1 parent 8905ce8 commit f58a06d
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .travis.maven.settings.xml
@@ -0,0 +1,17 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">

<interactiveMode>false</interactiveMode>

<servers>
<server>
<id>jboss-snapshots-repository</id>
<username>${env.NEXUS_DEPLOY_USERNAME}</username>
<password>${env.NEXUS_DEPLOY_PASSWORD}</password>
</server>
</servers>

</settings>

26 changes: 26 additions & 0 deletions .travis.yml
@@ -0,0 +1,26 @@
language: java

jdk:
- oraclejdk7

env:
global:
- secure: "T4m4w+yL5sOtqaTcOm6lMjBHlPTLL//ihCCsC9rsMoLlNusW2tRieNCkGRikGPrQBwkmqtDXi8EPiypSarQ6q8jOf34sKYMbyNceIjndRkch0wyQk4+tQDAmoBAxUdO157eQw8vYb4c9ox8hQAVxVKynH7I/7mLYfv00nTr4zY8="
- secure: "DKej+NuWNHavxLML0KvFZwPEKZ2fEHIG+kGMaUrYjVp9lR3TBwszb6kVJicbF6oCs/qYl+EqI/WJy+45CyE+aEo3t5qjpyg2wrK0EEZ99PEuq9kC9TrGucbGpxGdyqVdyl7VnSaYqEdpt5PXpunDzyL/fREyNRVep6qMIBz1FTs="

branches:
only:
- master
- 1.0

install:
- mvn -version -B

script:
- mvn -fae install -Pgenerate-docs,wildfly8-integration-test | grep -vF "Downloading:" | grep -vF "Downloaded:"

after_success:
- test "${TRAVIS_PULL_REQUEST}" = "false" && mvn -s .travis.maven.settings.xml -DskipTests=true deploy

notifications:
email: brmeyer@redhat.com

0 comments on commit f58a06d

Please sign in to comment.