limit deploy to master

This commit is contained in:
Mariusz Smykula
2016-04-04 09:31:43 +02:00
parent 3b461e0785
commit ce67a2fb06
2 changed files with 19 additions and 4 deletions

View File

@@ -2,12 +2,12 @@ language: java
jdk:
- oraclejdk8
before_install:
- openssl aes-256-cbc -K $encrypted_6c56aea9ab8c_key -iv $encrypted_6c56aea9ab8c_iv -in .mvn/codesigning.asc.enc -out .mvn/codesigning.asc -d
- gpg --fast-import .mvn/codesigning.asc
- [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ] && openssl aes-256-cbc -K $encrypted_6c56aea9ab8c_key -iv $encrypted_6c56aea9ab8c_iv -in .mvn/codesigning.asc.enc -out .mvn/codesigning.asc -d
- [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ] && gpg --fast-import .mvn/codesigning.asc
before_script:
- ./mvnw release-candidate:updateVersion -Drevision=$TRAVIS_BUILD_NUMBER
script:
- ./mvnw deploy --settings .mvn/settings.xml -Prelease
- [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ] && ./mvnw deploy --settings .mvn/settings.xml -Prelease
after_success:
- git config --global user.email "builds@travis-ci.com"
- git config --global user.name "Travis CI"
@@ -15,7 +15,7 @@ after_success:
- echo -n $GIT_TAG > public/version
- git commit -m "Set build VERSION number" public/version
- git tag $GIT_TAG -a -m "Generated tag from TravisCI build $TRAVIS_BUILD_NUMBER"
- git push --quiet https://$GITHUBKEY@github.com/Codearte/accurest-maven-plugin
- [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ] && git push --quiet https://$GITHUBKEY@github.com/Codearte/accurest-maven-plugin
$GIT_TAG > /dev/null 2>&1
- ./mvnw clean test jacoco:report coveralls:report
branches:

View File

@@ -7,6 +7,21 @@ Accurate REST Maven Plugin
Converting [Accurest](https://github.com/Codearte/accurest/wiki/1.-Introduction) GroovyDSL into WireMock stub mappings:
mvn io.codearte.accurest:accurest-maven-plugin:convert
or shortly
mvn accurest:convert
but this requires additional configuration inside `~/.m2/settings.xml`
```xml
<settings>
<pluginGroups>
<pluginGroup>io.codearte.accurest</pluginGroup>
</pluginGroups>
</settings>
```
For more information please go to the [Wiki](https://github.com/Codearte/accurest/wiki/2.2-Maven-Project)