yannrichet / rsession

R sessions wrapping for Java
BSD 2-Clause "Simplified" License
52 stars 31 forks source link

Consider publishing maven site to github #7

Closed kktuax closed 8 years ago

kktuax commented 9 years ago

Now that we use maven we can publish the maven site with the Javadoc to GitHub pages using their site plugin: https://github.com/github/maven-plugins

kktuax commented 9 years ago

Result of "mvn site" after commit 4552949

http://predictia.github.io/rsession/

Note that ~/.m2/settings.xml must contain auth details:

<settings>
 <servers>
...
    <server>
     <id>github</id>
     <username>youruser</username>
     <password>yourpass</password>
   </server>
...
 </servers>
</settings>
yannrichet commented 8 years ago

done.