linsolas / casperjs-runner-maven-plugin

CasperJS Runner Maven plugin
Apache License 2.0
13 stars 8 forks source link

Publish maven site #17

Closed bguerin closed 10 years ago

bguerin commented 10 years ago

With 65a4bcdbb461aff9e38a604b859ff6571e8b862d you can now produce a Maven site which will automatically be uploaded to a gh-branches of your repository, so that the link to http://linsolas.github.io/casperjs-runner-maven-plugin/ in the README will work

To do this, in your settings.xml (see https://github.com/github/maven-plugins) :

<servers>
...
  <server>
    <id>github</id>
    <username>linsolas</username> <!-- Or remove this line if you want to use a personnal access token -->
    <password>...</password> <!-- your password, or the generated personnal access token -->
  </server>
...
</servers>

Then :

mvn site -Psite
bguerin commented 10 years ago

@linsolas : don't realize you add me as a collaborator to your project, thanks !

Closing, site has been generated and uploaded to the gh-pages branch :)